If-None-Match header with "e-tag value" field is automatically being inserted into AWS CompleteMultipartUpload request headers by NeoLoad. How do I stop NeoLoad from automatically inserting this field into my request headers?
We tried Population settings, the 'Handle cache' setting : New user
But no luck.
Thanks in advance,
Chinnikrishna.
If NeoLoad added that If-None-Match header that means that it's probably the second time that this request is executed within your script. Could you check if it's the case?
If yes then it sounds to me that it's the correct behavior whatever the handle cache settings.
There's a way to not add this header would be to empty the cache using this Javascript method: context.currentVU.clearCache();
But it will clear the cache globally until it is full again.
Another way could be to disable cache at all for specific HTTP methods like POST, GET, PUT etc....
Be carefull it will disable the cache for all your scripts within that controller.
Still If-None-Match header is coming automatically in the request
CHINNIKRISHNA REDDY answered
Nouredine answered
CHINNIKRISHNA REDDY posted a new question