diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-03-15 03:12:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-15 03:12:56 -0400 |
commit | 45fad1b7cfd44376d8be35288b7213636bc93450 (patch) | |
tree | 9cacbdad5aca24bbca2994b88f14b156e096dcc3 /core/http_bench.rs | |
parent | 630ead1296dd53fa8f13b7598fd6700dc7a2d9f1 (diff) |
allow v8 cli flags on deno_core_http_bench (#1934)
Diffstat (limited to 'core/http_bench.rs')
-rw-r--r-- | core/http_bench.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/http_bench.rs b/core/http_bench.rs index 8e5a0e10c..b3699dc15 100644 --- a/core/http_bench.rs +++ b/core/http_bench.rs @@ -182,6 +182,7 @@ fn main() { }); let args: Vec<String> = env::args().collect(); + let args = deno_core::v8_set_flags(args); if args.len() > 1 && args[1] == "--multi-thread" { println!("multi-thread"); tokio::run(main_future); |