GeventSocketIOWorker has no attribute 'socket'

前端 未结 3 1170
小蘑菇
小蘑菇 2021-01-13 16:12

I need to run Django application using gunicorn. I read documentation, and I think I set up everything like I should, but when I run

gunicorn --worker-class          


        
3条回答
  •  无人及你
    2021-01-13 16:19

    Seems to be a problem with gunicorn>0.17, see issue #122. For me it's working with the version 0.16.1 of gunicorn.

    pip install gunicorn==0.16.1
    

提交回复
热议问题