-
Notifications
You must be signed in to change notification settings - Fork 137
Description
Problem:
I am trying to setup a test where we use user credentials to access APIs. In order to make it secure, we want to store the credentials in a file encrypted using the aws-encryption-sdk. In the JMeter test plan, we preprocess the file and decrypt it before loading the credentials. This requires the aws-java-sdk.jar
and aws-encryption-sdk.jar
to be added as plugins. However, the file size of these .jar files is already beyond the allowed file size limitations.
I know this limit was previously increased from 5mb to 50mb, however, I am not sure why any such restriction on file size is required.
const FILE_SIZE_LIMIT = 50 * 1024 * 1024; |
Describe the feature you'd like
The limit on file size seems unnecessary and it limits the scope of tests we can run using the solution.
I know this limit was previously increased from 5mb to 50mb, however, I am not sure why any such restriction is required.
I propose removing the upload file size limit as it seems arbitrary/or at least bump it up to allow installation of larger sized plugins in the uploaded zip file.