我可以使用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挂起?
答案 0 :(得分:-1)
在我的INI文件中,设置线程= 2是导致导入uuid挂起的原因。