Task epehemeral storage when passed ,then it throws error.
Author: Anuratna-kumarCreated Apr 25, 2026Updated Apr 25, 2026
Issue : When in run-fargate command --task-ephemeral-storage is passed then error occurs and test cannot start
Error : Error: STRING_VALUE cannot be converted to Integer
InvalidParameterException: STRING_VALUE cannot be converted to Integer
at AwsJson1_1Protocol.handleError
Artillery version : 2.0.30
Fix : just need to add parseInt at line number : 1456 in /aws-ecs/legacy/run-cluster.js
- sizeInGiB: parseInt(context.cliOptions.taskEphemeralStorage, 10)
Source: artilleryio/artillery