似乎uwsgi在异步模式下记住先前请求的标头!
我使用uwsgi部署了一个非常简单的应用程序:
def application(environ, start_response):
start_response('200 OK', [('Content-Type', 'text/plain')])
environ_repr = '\n'.join(sorted(key.ljust(30) + ' = ' + repr(value) for key, value in environ.items()))
return [environ_repr]
并运行它:
uwsgi --module index -s 0.0.0.0:8000 -p 1 --async 5
重新生成问题的步骤:
HTTP_KEY
中有environment
个条目,确定。HTTP_KEY
条目仍然存在environment
,oopch!注意:其他标题如Cookie
!
(使用uwsgi 1.0,1.2.4和1.3-dev以及python 2.7测试)
答案 0 :(得分:0)