为什么导入uuid会导致uwsgi守护程序挂起?

时间:2019-01-13 22:30:47

标签: python uwsgi wsgi

我可以使用uwsgi执行以下WSGI程序(当uwsgi作为systemd运行时)。

def application(env, start_response):
  start_response('200 OK', [('Content-Type','text/html')])
  return [b"Hello world"]

但是,如果我尝试导入uuid模块,该程序将挂起并最终超时。但是直接使用uwsgi运行程序将起作用:

uwsgi --socket 0.0.0.0:8000 --protocol=http -w myapp

为什么uuid会导致uwsgi挂起?

1 个答案:

答案 0 :(得分:-1)

在我的INI文件中,设置线程= 2是导致导入uuid挂起的原因。