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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
GunicornBasedHttpService Flask application served using gunicorn in separate process using async workers (threads in this case). Application served by this base class suppose to handle unbuffered requests, nginx in this case is no option hence async workers.
WSGIRefBasedHttpService Flask application served using wsgiref in separate thread. We can leverage shared state between main thread and thread handling wsgiref server and dynamically attach Mock object as view functions.