Skip to content

Commit

Permalink
use unbounded channel
Browse files Browse the repository at this point in the history
  • Loading branch information
macjuul committed Nov 23, 2024
1 parent 3b2a940 commit e796185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ impl SurrealWasmEngine {
}

pub async fn export(&self, config: Option<Uint8Array>) -> Result<String, Error> {
let (tx, rx) = channel::bounded(1);
let (tx, rx) = channel::unbounded();

match config {
Some(config) => {
Expand Down

0 comments on commit e796185

Please sign in to comment.