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
There turns out to be another barrier to dispatching a large number of jobs which is that by default Django won't accept more than 1,000 checkbox inputs and will throw a TooManyFieldsSent error.
The Django docs suggest that "applications that are expected to receive an unusually large number of form fields should tune this setting." I think it would be reasonable to increase it, maybe to a couple of thousand. Because of the existence of "run all" it doesn't act as a hard barrier to prevent users from dispatching too many jobs in any case.
The text was updated successfully, but these errors were encountered:
There turns out to be another barrier to dispatching a large number of jobs which is that by default Django won't accept more than 1,000 checkbox inputs and will throw a
TooManyFieldsSent
error.Em hit this error recently (presumably as a result of using my hacky JS thing to select a lot of checkboxes):
https://ebm-datalab.sentry.io/issues/6090198345/
The Django docs suggest that "applications that are expected to receive an unusually large number of form fields should tune this setting." I think it would be reasonable to increase it, maybe to a couple of thousand. Because of the existence of "run all" it doesn't act as a hard barrier to prevent users from dispatching too many jobs in any case.
The text was updated successfully, but these errors were encountered: