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
If there are any postback URLs set in the settings, and the server they are pointing at doesn't respond in 5 seconds, the server returns a 500(?) error and the rest of the code seems to be ignored.
The code does have that timeout parameter (opener.open(req, timeout=5)), the timeout should just fail gracefully, or we should change to using something that is async so it doesn't actually block the code if it's waiting.
The text was updated successfully, but these errors were encountered:
And now I post that, it seems to be a different matter. If the postback server doesn't exist (so I assume a 404) it will be fine, but if the postback server does exist but it doesn't return anything, it will block the code.
If there are any postback URLs set in the settings, and the server they are pointing at doesn't respond in 5 seconds, the server returns a 500(?) error and the rest of the code seems to be ignored.
The code does have that timeout parameter (
opener.open(req, timeout=5)
), the timeout should just fail gracefully, or we should change to using something that is async so it doesn't actually block the code if it's waiting.The text was updated successfully, but these errors were encountered: