Hi List,
I am not sure if my recent change can help solve the stopping issue in
hookbox.
https://github.com/raikage/hookbox
I tested them using browsers with websocket functionality, so far no
issues , I am not sure if the fix works when using long polling/CSP.
By default in eventlet maximum number of connection is set to 1024
>>> from eventlet import wsgi
>>> wsgi.DEFAULT_MAX_SIMULTANEOUS_REQUESTS
1024
I have set max_size parameter to use the soft limit allowed for the
user (ulimit -n), to increase them see
http://stackoverflow.com/questions/2569620/socket-accept-error-24-to-many-open-files
Regards,
Dax