uwsgi IOError: write error

前端 未结 2 1237
遥遥无期
遥遥无期 2021-01-31 17:43

I have a problem with my nginx+uwsgi configuration for my django app, I keep getting this errors in the uwsgi error log:

Wed Jan 13 15:26:04 2016 - uwsgi_res

2条回答
  •  余生分开走
    2021-01-31 18:06

    Alternative solution is to put the following settings in uWSGI config:

    ignore-sigpipe = true
    ignore-write-errors = true
    disable-write-exception = true
    

    See https://github.com/getsentry/raven-python/issues/732

提交回复
热议问题