extensions: Load extension byte repr in background thread (again) (#41398)

Piotr Osiewicz created

Release Notes:

- N/A

Change summary

crates/extension_host/src/wasm_host.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/extension_host/src/wasm_host.rs 🔗

@@ -658,7 +658,7 @@ impl WasmHost {
         };
         cx.spawn(async move |cx| {
             let (extension_task, manifest, work_dir, tx, zed_api_version) =
-                load_extension_task.await?;
+                cx.background_executor().spawn(load_extension_task).await?;
             // we need to run run the task in an extension context as wasmtime_wasi may
             // call into tokio, accessing its runtime handle
             let task = Arc::new(gpui_tokio::Tokio::spawn(cx, extension_task)?);