summaryrefslogtreecommitdiff
path: root/runtime/examples/hello_runtime.rs
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/examples/hello_runtime.rs')
-rw-r--r--runtime/examples/hello_runtime.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/examples/hello_runtime.rs b/runtime/examples/hello_runtime.rs
index e8abaffb8..34b249e0b 100644
--- a/runtime/examples/hello_runtime.rs
+++ b/runtime/examples/hello_runtime.rs
@@ -55,6 +55,6 @@ async fn main() -> Result<(), AnyError> {
MainWorker::from_options(main_module.clone(), permissions, &options);
worker.bootstrap(&options);
worker.execute_module(&main_module).await?;
- worker.run_event_loop().await?;
+ worker.run_event_loop(false).await?;
Ok(())
}