diff options
Diffstat (limited to 'core/examples/http_bench.rs')
-rw-r--r-- | core/examples/http_bench.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/examples/http_bench.rs b/core/examples/http_bench.rs index e82fcc119..a7b26f4b1 100644 --- a/core/examples/http_bench.rs +++ b/core/examples/http_bench.rs @@ -165,7 +165,7 @@ fn main() { filename: "http_bench.js", }); - let mut isolate = deno::Isolate::new(startup_data, false); + let isolate = deno::Isolate::new(startup_data, false); isolate.register_op("listen", http_op(op_listen)); isolate.register_op("accept", http_op(op_accept)); isolate.register_op("read", http_op(op_read)); |