Skip to content

Commit

Permalink
Disabled asynchronous threading
Browse files Browse the repository at this point in the history
  • Loading branch information
john-sharratt committed Jul 28, 2023
1 parent bff2d8c commit efa6a80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/wasi-web/src/glue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ pub fn start(encoded_args: String) -> Result<(), JsValue> {

let mut capabilities = Capabilities::default();
capabilities.threading.max_threads = Some(50);
capabilities.threading.enable_asynchronous_threading = true;
capabilities.threading.enable_asynchronous_threading = false;
console = console.with_capabilities(capabilities);

let (tx, mut rx) = mpsc::unbounded_channel();
Expand Down
2 changes: 1 addition & 1 deletion lib/wasi-web/wasmer.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'wasmer/wasmer-sh'
version = '0.2.10'
version = '0.2.12'
description = 'Container that holds the wasmer.sh website.'

[dependencies]
Expand Down

0 comments on commit efa6a80

Please sign in to comment.