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
Existing Flask extensions only expect views to be synchronous. If they provide decorators to add functionality to views, those will probably not work with async views because they will not await the function or be awaitable. Other functions they provide will not be awaitable either and will probably be blocking if called within an async view.
This issue tracks adding support to Rebar specifically for Flask v2 async request handlers.
The text was updated successfully, but these errors were encountered:
Flask v2 (due to come out in the next couple weeks) adds limited support for async request handlers, see e.g.:
As the docs above say:
This issue tracks adding support to Rebar specifically for Flask v2 async request handlers.
The text was updated successfully, but these errors were encountered: