diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-10-26 17:07:50 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-26 17:07:50 +0530 |
commit | 851db03a6eb25ef899437c1393745f7fe9d15585 (patch) | |
tree | 3eed432d260cc2d58fae6d0eca114e57c0426a91 /runtime/web_worker.rs | |
parent | 4d166e638f387db45d9ae1fe967db6a18ff7cc03 (diff) |
perf(core): do not drive JsInspector by default (#16410)
Part of https://github.com/denoland/deno/pull/16377
Diffstat (limited to 'runtime/web_worker.rs')
-rw-r--r-- | runtime/web_worker.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/web_worker.rs b/runtime/web_worker.rs index f08127b22..f7dc24b47 100644 --- a/runtime/web_worker.rs +++ b/runtime/web_worker.rs @@ -457,6 +457,7 @@ impl WebWorker { shared_array_buffer_store: options.shared_array_buffer_store.clone(), compiled_wasm_module_store: options.compiled_wasm_module_store.clone(), extensions, + inspector: options.maybe_inspector_server.is_some(), ..Default::default() }); |