> I understand that it accepts because the other requests are finished. > > What I don't understand is the role of the queue size. I can put 2 or 100, > I'll have the same behavior. The connection will be accepted and the > client > will sit there waiting
This can happens only if tcp_defer_accept is enabled (or you have some proxy before uWSGI accepting requests), otherwise you can enqueue upto listen_queue + X requests. You could strace telnet too, to better check, and eventually you can check the sockets status with the 'ss' command (if i rememebr correctly it is part of the iproute2 suite) -- Roberto De Ioris http://unbit.it _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
