diff options
author | 2021-12-31 00:14:24 -0800 | |
---|---|---|
committer | 2021-12-31 00:14:24 -0800 | |
commit | aaf5c28c5b1c134f57c12f5f93e859f8fa73ae51 (patch) | |
tree | 33d8e626dbc4a47486a966ed7aca376263d6922f /misctools | |
parent | 3083bbadc1437d947824c56ca9c0e03bace73480 (diff) | |
download | bun-aaf5c28c5b1c134f57c12f5f93e859f8fa73ae51.tar.gz bun-aaf5c28c5b1c134f57c12f5f93e859f8fa73ae51.tar.zst bun-aaf5c28c5b1c134f57c12f5f93e859f8fa73ae51.zip |
[bun install] Slightly more reliable HTTP
Diffstat (limited to 'misctools')
-rw-r--r-- | misctools/http_bench.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misctools/http_bench.zig b/misctools/http_bench.zig index f31aace32..a52229dca 100644 --- a/misctools/http_bench.zig +++ b/misctools/http_bench.zig @@ -166,7 +166,7 @@ pub const Arguments = struct { .headers = .{}, .headers_buf = "", .body = body_string, - .keep_alive = !args.flag("--no-keep-alive"), + // .keep_alive = !args.flag("--no-keep-alive"), .concurrency = std.fmt.parseInt(u16, args.option("--max-concurrency") orelse "32", 10) catch 32, .turbo = args.flag("--turbo"), .timeout = std.fmt.parseInt(usize, args.option("--timeout") orelse "0", 10) catch |err| { |