Skip to content

Commit

Permalink
fix(cli): preserve blob store when resetting file watcher (#18253)
Browse files Browse the repository at this point in the history
Fixes #17733

---------

Co-authored-by: Matt Mastracci <[email protected]>
  • Loading branch information
GJZwiers and mmastrac authored Mar 18, 2023
1 parent c06d6fb commit 058865c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/proc_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ impl ProcState {
maybe_import_map: self.maybe_import_map.clone(),
maybe_inspector_server: self.maybe_inspector_server.clone(),
root_cert_store: self.root_cert_store.clone(),
blob_store: Default::default(),
blob_store: self.blob_store.clone(),
broadcast_channel: Default::default(),
shared_array_buffer_store: Default::default(),
compiled_wasm_module_store: Default::default(),
Expand Down

0 comments on commit 058865c

Please sign in to comment.