Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vigoo committed Jan 29, 2025
1 parent 3b72a88 commit 700a724
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions golem-worker-executor-base/tests/wasi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1857,7 +1857,8 @@ async fn wasi_incoming_request_handler(
let executor = start(deps, &context).await.unwrap();

let component_id = executor
.store_component("wasi-http-incoming-request-handler")
.component("wasi-http-incoming-request-handler")
.store()
.await;
let worker_id = executor
.start_worker(&component_id, "wasi-http-incoming-request-handler-1")
Expand Down Expand Up @@ -1911,7 +1912,8 @@ async fn wasi_incoming_request_handler_echo(
let executor = start(deps, &context).await.unwrap();

let component_id = executor
.store_component("wasi-http-incoming-request-handler-echo")
.component("wasi-http-incoming-request-handler-echo")
.store()
.await;

let worker_id = executor
Expand Down Expand Up @@ -2050,7 +2052,8 @@ async fn wasi_incoming_request_handler_state(
let executor = start(deps, &context).await.unwrap();

let component_id = executor
.store_component("wasi-http-incoming-request-handler-state")
.component("wasi-http-incoming-request-handler-state")
.store()
.await;

let worker_id = executor
Expand Down

0 comments on commit 700a724

Please sign in to comment.