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
For stability, we use the Tornado server with Flask in production right now. Unfortunately, Tornado in this configuration can only handle one HTTP request at a time. This is really bad, now that bulk email sending with the Mail Tool and nontrivial delays between messages can take a long time. During this time, all other HTTP requests will be delayed until the Mail Tool is finished.
Figure out a way to make long-running requests, especially in the Mail Tool, asynchronous. This may involve replacing Tornado by another server. Some options are listed here.
When this is done, remove the warning message from the Mail Tool page.
The text was updated successfully, but these errors were encountered:
For stability, we use the Tornado server with Flask in production right now. Unfortunately, Tornado in this configuration can only handle one HTTP request at a time. This is really bad, now that bulk email sending with the Mail Tool and nontrivial delays between messages can take a long time. During this time, all other HTTP requests will be delayed until the Mail Tool is finished.
Figure out a way to make long-running requests, especially in the Mail Tool, asynchronous. This may involve replacing Tornado by another server. Some options are listed here.
When this is done, remove the warning message from the Mail Tool page.
The text was updated successfully, but these errors were encountered: