From d0256b86b89245f39bd8b58dda8b4308f328688d Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Fri, 8 Jan 2021 03:48:03 +0100 Subject: [PATCH] Need at least 16 workers to handle peak load :s --- yunodiagnoser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yunodiagnoser.py b/yunodiagnoser.py index 64ae999..8f898f8 100644 --- a/yunodiagnoser.py +++ b/yunodiagnoser.py @@ -393,4 +393,4 @@ async def main(request): if __name__ == "__main__": - app.run(host="0.0.0.0", port=7000) + app.run(host="0.0.0.0", port=7000, workers=16)