From 7f3902b41f68edddbc50b01ea52c697827d8516f Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Wed, 15 Nov 2023 04:25:55 -0800 Subject: perf: static bootstrap options in snapshot (#21213) Closes https://github.com/denoland/deno/issues/21133 --- runtime/snapshot.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/snapshot.rs') diff --git a/runtime/snapshot.rs b/runtime/snapshot.rs index 61b0e075f..6ac50dca1 100644 --- a/runtime/snapshot.rs +++ b/runtime/snapshot.rs @@ -234,7 +234,7 @@ pub fn create_runtime_snapshot(snapshot_path: PathBuf) { ops::signal::deno_signal::init_ops(), ops::tty::deno_tty::init_ops(), ops::http::deno_http_runtime::init_ops(), - ops::bootstrap::deno_bootstrap::init_ops(), + ops::bootstrap::deno_bootstrap::init_ops(None), ]; for extension in &mut extensions { -- cgit v1.2.3