Hi there,

Since upgrading from 0.9.8.3 to 1.0.4 to gain support for multiple
touch-reload files, my python app does not work anymore, here is the
output:

$ uwsgi --plugin python --module crunch.web:application --socket :8080
--protocol http --buffer-size 25000
*** Starting uWSGI 1.0.4-debian (64bit) on [Wed Feb 29 16:27:10 2012] ***
compiled with version: 4.6.1 on 29 February 2012 15:23:42
current working directory: /path/to/crunch
*** running under screen session 17171.pts-0.vm-jbq ***
detected binary path: /usr/bin/uwsgi-core
*** WARNING: you are running uWSGI without its master process manager ***
your memory page size is 4096 bytes
uwsgi socket 0 bound to TCP address :8080 fd 3
Python version: 2.7.2+ (default, Oct  4 2011, 20:41:12)  [GCC 4.6.1]
Python main interpreter initialized at 0x1e1a8b0
your server socket listen backlog is limited to 100 connections
*** Operational MODE: single process ***
WSGI application 0 (mountpoint='') ready on interpreter 0x1e1a8b0 pid:
18090 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI worker 1 (and the only) (pid: 18090, cores: 1)
timeout. skip request.


I use the following command to make the request, and curl errors out
after 4 seconds:

$ curl http://localhost:8080
curl: (52) Empty reply from server

I can't manage to get my app to work anymore, even with the most
simple "hello" application like this:

def application(environ, start_response):
    start_response("200 OK")
    return "hello"

Any idea?
-- 
Jean-Baptiste Quenot
_______________________________________________
uWSGI mailing list
[email protected]
http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi

Reply via email to