You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use gunicorn+gaiohttp+nginx for deploying my Python 3.4.2 application, and after update Gunicorn to 19.2.0, my application not more accessible from browser or command line
The debug setting has been removed and now only the debug level can be used to know if
we are in debug mode or not. This change update the gaiohttp worker to handle
that. While I'm here, expose the loglevel from the Logger class.
fix#977
I use gunicorn+gaiohttp+nginx for deploying my Python 3.4.2 application, and after update Gunicorn to 19.2.0, my application not more accessible from browser or command line
Script to run server is trivial:
It started well due to command line output:
But I cannot access
127.0.0.1:8208
via browser (as it freezes) or via requests (it freezes here too)Freeze appears on both of
aiohttp==0.13.1
andaiohttp==0.14.4
while usinggunicorn==19.2.0
, and doesn't appear at all forgunicorn==19.1.1
The text was updated successfully, but these errors were encountered: