Skip to content

Commit

Permalink
benchmark: remove excessive value from http2 benchmark
Browse files Browse the repository at this point in the history
`requests = 1000000` took about 10 minutes per run for me
and doesn’t seem to add much value on its own.

PR-URL: #18936
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
  • Loading branch information
addaleax committed Mar 15, 2018
1 parent d93c48b commit e136903
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark/http2/respond-with-fd.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const fs = require('fs');
const file = path.join(path.resolve(__dirname, '../fixtures'), 'alice.html');

const bench = common.createBenchmark(main, {
requests: [100, 1000, 10000, 100000, 1000000],
requests: [100, 1000, 10000, 100000],
streams: [100, 200, 1000],
clients: [1, 2],
benchmarker: ['h2load']
Expand Down

0 comments on commit e136903

Please sign in to comment.