I have some http clients that sometimes take too long to complete the request and I want to cut them off after a specific length of time (say, 5 seconds).
I know that in web.config you can set the executionTimeout to be a value, but when I set it, the api doesn't seem to abide by it.
To test this, I'm creating a controller with Thread.Sleep
set to a value greater than the value I'm setting in the web.config but the response is not being cut off.
Although I've not managed to do this out of the box, I've had some success using Polly