Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/gunicorn/workers/__init__.py: 50%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

2 statements  

1# 

2# This file is part of gunicorn released under the MIT license. 

3# See the NOTICE for more information. 

4 

5# supported gunicorn workers. 

6SUPPORTED_WORKERS = { 

7 "sync": "gunicorn.workers.sync.SyncWorker", 

8 "eventlet": "gunicorn.workers.geventlet.EventletWorker", 

9 "gevent": "gunicorn.workers.ggevent.GeventWorker", 

10 "gevent_wsgi": "gunicorn.workers.ggevent.GeventPyWSGIWorker", 

11 "gevent_pywsgi": "gunicorn.workers.ggevent.GeventPyWSGIWorker", 

12 "tornado": "gunicorn.workers.gtornado.TornadoWorker", 

13 "gthread": "gunicorn.workers.gthread.ThreadWorker", 

14}