I have set up simple python script that responds with hello:
def main(environ, start_response):
start_response('200 OK', [
('Content-type', 'text/plain')
])
return 'hello'
Everything works fine in Chrome, I can refresh page every second But in Firefox I receive 'pending' status and eventually after veeeeeery long time Firefox shows the respond message.
What's wrong here? I tried with Content-Length but it didn't help
Here are the responses:
No, tested with two different Firefox on separate machines.
Firefox:
Status=OK - 200
Server=nginx
Date=Thu, 24 Jan 2013 14:28:31 GMT
Content-Type=text/plain
Transfer-Encoding=chunked
Connection=keep-alive
Content-Encoding=gzip
Chrome:
HTTP/1.1 200 OK
Server: nginx
Date: Thu, 24 Jan 2013 20:24:06 GMT
Content-Type: text/plain
Transfer-Encoding: chunked
Connection: keep-alive
Content-Encoding: gzip
start_responsedo? Is this a WSGI setup? – Martijn Pieters Jan 24 at 14:27return ['hello']. While the string is an iterable, I'm betting that iterating over each character produces a more complicated operation or structure than you intend. – sr2222 Jan 24 at 14:33