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
[frontend/submission_manager] catch DocumentTooLarge exception
Fixes#697.
This is a first mitigation and in all case useful, as the limit is set on the
total command sent to the MongoDB server, which cannot be computed before.
[backend] BackendJobDone should be sent to the job initiating client
Otherwise in database-shared multi-client (multiprocess) setup, another
client can kill a job it does not own and receive a JobDone it cannot process.
[routes] adapt CookielessConverter to new werkzeug router
The new router does not perform correctly when using regex groups. Moreover,
it is now required to explicitely tell it the converter can match the forward /
using ``part_isolating``.