You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
timeout: "BOOM"
I'm not currently sure what the maximum allowed value for timeout is.
The text was updated successfully, but these errors were encountered:
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: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.The text was updated successfully, but these errors were encountered: