diff options
author | 2022-06-01 13:21:00 -0700 | |
---|---|---|
committer | 2022-06-01 13:21:00 -0700 | |
commit | 26c729a4d99e3f65f000030e251a4678241c599b (patch) | |
tree | 754b2e005115df5002d8e4fe39195cda0180a1ff | |
parent | CI: fix version step output (diff) |
Fix WSGI app not being called
-rw-r--r-- | config/gunicorn.conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/gunicorn.conf.py b/config/gunicorn.conf.py index 563f8ea..5e492bb 100644 --- a/config/gunicorn.conf.py +++ b/config/gunicorn.conf.py @@ -3,4 +3,4 @@ bind = "0.0.0.0:8060" logger_class = "snekbox.utils.gunicorn.GunicornLogger" access_logformat = "%(m)s %(U)s%(q)s %(s)s %(b)s %(L)ss" access_logfile = "-" -wsgi_app = "snekbox:SnekAPI" +wsgi_app = "snekbox:SnekAPI()" |