Description
BulkImportController.import() reads CSV content directly from request.body.csv as a string with no enforced maximum length, risking memory pressure (OOM) on very large uploads since the whole string is held in memory before parsing.
Where
backend/src/controllers — BulkImportController.import
Acceptance Criteria
Description
BulkImportController.import()reads CSV content directly fromrequest.body.csvas a string with no enforced maximum length, risking memory pressure (OOM) on very large uploads since the whole string is held in memory before parsing.Where
backend/src/controllers— BulkImportController.importAcceptance Criteria