diff --git a/config/gunicorn_conf.py b/config/gunicorn_conf.py index c751e3b44..ed89e13f6 100644 --- a/config/gunicorn_conf.py +++ b/config/gunicorn_conf.py @@ -19,4 +19,4 @@ else: workers = int(NUM_CPUS / 2) if workers <= 2: - workers = math.floor(GIGS_OF_MEMORY * 1000 / 256) \ No newline at end of file + workers = int(math.floor(GIGS_OF_MEMORY * 1000 / 256)) \ No newline at end of file