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
In #1738 we add the ability to connect to the Linera validator RPC service from a Web browser or other JavaScript environment. However, the means of implementation (the Web standard fetch call) does not support timeouts or retries out of the box. These can be implemented on top, but require further wasm-bindgen wizardry to implement a solution based on AbortController and a retry loop. To unify the behaviour of the Web and native interfaces, we should really make sure the Web interface interprets its NodeOptions the same way as the native interface.
The text was updated successfully, but these errors were encountered:
In #1738 we add the ability to connect to the Linera validator RPC service from a Web browser or other JavaScript environment. However, the means of implementation (the Web standard
fetch
call) does not support timeouts or retries out of the box. These can be implemented on top, but require furtherwasm-bindgen
wizardry to implement a solution based onAbortController
and a retry loop. To unify the behaviour of the Web and native interfaces, we should really make sure the Web interface interprets itsNodeOptions
the same way as the native interface.The text was updated successfully, but these errors were encountered: