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
The latest emscripten removed the support for synchronous downloads from the main thread. See emscripten-core/emscripten#8070 for more details behind the reasoning.
We've adopted our code in that regards in 0a1daa9 - but this is of course not an ideal solution as the unittests can run, and not all parts are downloaded from threads. We most likely should refactor the Request class to return a future or some kind of state that you can query to implement fully async downloads for all drivers (winhttp, curl and emscripten)
The latest emscripten removed the support for synchronous downloads from the main thread. See emscripten-core/emscripten#8070 for more details behind the reasoning.
We've adopted our code in that regards in 0a1daa9 - but this is of course not an ideal solution as the unittests can run, and not all parts are downloaded from threads. We most likely should refactor the
Request
class to return a future or some kind of state that you can query to implement fully async downloads for all drivers (winhttp, curl and emscripten)The text was updated successfully, but these errors were encountered: