switch eventlet to gevent

This commit is contained in:
Kenneth Kehl
2025-07-28 09:21:46 -07:00
parent 05381a5ba9
commit ee47610d2a
3 changed files with 144 additions and 66 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ import gunicorn
# but we have an unusual configuration with a lot of cpus and not much memory
# so adjust it.
workers = multiprocessing.cpu_count()
worker_class = "eventlet"
worker_class = "gevent"
bind = "0.0.0.0:{}".format(os.getenv("PORT"))
disable_redirect_access_to_syslog = True
gunicorn.SERVER_SOFTWARE = "None"