-
Notifications
You must be signed in to change notification settings - Fork 5
Closed
Labels
Ready For ToDoThe task can be transferred to BacklogThe task can be transferred to Backlogenhancement
Description
Other Feature Request
Description
Currently, the component code blocks writing of attachments that are larger than 5MB in size in certain branches and does not appear to enforce limits in other branches. (
| const MAX_FILE_SIZE = 5242880; // 5 MiB |
MAX_FILE_SIZE env variable. We should ensure that all Code paths can hande files that are close to this limit.
Definition of Done
- There is a global max attachment size value that is referenced in all actions that write attachments.
- This global max attachment size value should be configurable via component environment variables like the SFTP component. This configuration should use the same units as the SFTP component (MB). When this environment variable is not provided, then this limit should default to 100MB (100 * 1024 * 1024 bytes).
- All non-deprecated actions be able to read & write attachments of up to 100MB under the default memory conditions. (Within densible XML depth.)
Metadata
Metadata
Assignees
Labels
Ready For ToDoThe task can be transferred to BacklogThe task can be transferred to Backlogenhancement