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
The project file upload handler will fail (EMFILE: Too many open files) if there are too many files included in the upload.
"DATA_UPLOAD_MAX_NUMBER_FILES" is set to 1000, but the process's FD limit is presumably set to the default of 1024. If we want to allow 1000 files at a time, we should raise the rlimit.
Also note that the inline script in edit_files_panel.html doesn't check if the number of files will be permitted.
The text was updated successfully, but these errors were encountered:
The project file upload handler will fail (EMFILE: Too many open files) if there are too many files included in the upload.
"DATA_UPLOAD_MAX_NUMBER_FILES" is set to 1000, but the process's FD limit is presumably set to the default of 1024. If we want to allow 1000 files at a time, we should raise the rlimit.
Also note that the inline script in edit_files_panel.html doesn't check if the number of files will be permitted.
The text was updated successfully, but these errors were encountered: