If I call `cfsetting requesttimeout` from within a...
# cfml-general
t
If I call
cfsetting requesttimeout
from within a function in a cfc, will it apply that setting to the cfm that called it?
if you know off the top of your head -- if you have to go testing to figure it out, I can save you the time and do that myself
v
It will be for any request (or page) calling that function
We had a scenario where a function used to take 5 minutes copying few GBs of files And we just added that at the top of the function
However that function is called from separate pages( Manually and through scheduler)
t
cool, thanks. That's exactly the scenario i'm wanting it for.