Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to make executionTimeout take effect while debugging?

I would like to debug a website, but also cause the httpRuntime executionTimeout setting to take effect. However, the documentation says:

This time-out applies only if the debug attribute in the compilation element is False.

Is there any way to enable executionTimeout when debug="True"?

like image 310
jball Avatar asked Sep 02 '25 17:09

jball


1 Answers

After more than a week of searching and trying various hacks, I'm confident in saying that, as of now, there is no reasonable way to have the httpRuntime executionTimeout setting take effect while the compilation debug flag is set to true.

One possible terrible hack workaround is to somehow trick the system into thinking that more than 30,000,000 seconds (just over 347 days) have elapsed, which is what executionTimeout is overridden to when debug is true.

like image 94
jball Avatar answered Sep 04 '25 10:09

jball