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
Currently the frontend can only handle one request at a time, while waiting for the API.
Two solutions:
Make the front-end really state-less, so multiple instances can run in parallel. That is, store all session information in cookies. However, don't use Flask's default sessions. While they sign the data to prevent modification, they still expose somewhat-secrets like the API tokens. Encrypt the data instead.
Reimplement the frontend with aiohttp.
The text was updated successfully, but these errors were encountered:
Currently the frontend can only handle one request at a time, while waiting for the API.
Two solutions:
The text was updated successfully, but these errors were encountered: