diff --git a/gunicorn/config.py b/gunicorn/config.py index 8fd281be..e7388c5e 100644 --- a/gunicorn/config.py +++ b/gunicorn/config.py @@ -106,7 +106,7 @@ class Config(object): # are we using a threaded worker? is_sync = uri.endswith('SyncWorker') or uri == 'sync' if is_sync and self.threads > 1: - return "threads" + return "gthread" return uri @property