I happened to put in a huge timeout value to render as a way to express that it should never timeout, since I was debugging:
timeout: 100000000000000000
Instead of getting the expected unlimited timeout, I got immediate failure. We should validate the timeout value before passing it on. Other invalid values cause immediate render failure as well:
I'm not currently sure what the maximum allowed value for timeout is.
I happened to put in a huge
timeoutvalue to render as a way to express that it should never timeout, since I was debugging:Instead of getting the expected unlimited timeout, I got immediate failure. We should validate the
timeoutvalue before passing it on. Other invalid values cause immediate render failure as well:I'm not currently sure what the maximum allowed value for
timeoutis.