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
G'ah. Just noticed timeouts are sticky on wasm32. An error around condvar.wait not supported, which is expected.
I'm not sure what solutions there could be for timeouts. Perhaps just turning off timeout methods on wasm32 is good enough.
We can add a .setTimeout to the browser to set a flag like "timed_out = true", but the only way for the task runner to be notified of the timeout is to spin-lock until it's timed out, which isn't asynchronous behavior. This will require some thought.
The text was updated successfully, but these errors were encountered:
G'ah. Just noticed timeouts are sticky on wasm32. An error around
condvar.wait
not supported, which is expected.I'm not sure what solutions there could be for timeouts. Perhaps just turning off timeout methods on wasm32 is good enough.
We can add a .setTimeout to the browser to set a flag like "timed_out = true", but the only way for the task runner to be notified of the timeout is to spin-lock until it's timed out, which isn't asynchronous behavior. This will require some thought.
The text was updated successfully, but these errors were encountered: