summaryrefslogtreecommitdiff
path: root/benchmark/_http-benchmarkers.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/_http-benchmarkers.js')
-rw-r--r--benchmark/_http-benchmarkers.js8
1 files changed, 3 insertions, 5 deletions
diff --git a/benchmark/_http-benchmarkers.js b/benchmark/_http-benchmarkers.js
index f9359b13d5..54b7481afa 100644
--- a/benchmark/_http-benchmarkers.js
+++ b/benchmark/_http-benchmarkers.js
@@ -91,11 +91,9 @@ class TestDoubleBenchmarker {
create(options) {
const child = child_process.fork(this.executable, {
silent: true,
- env: {
- duration: options.duration,
- connections: options.connections,
- path: `http://127.0.0.1:${options.port}${options.path}`
- }
+ env: Object.assign({}, process.env, {
+ test_url: `http://127.0.0.1:${options.port}${options.path}`
+ })
});
return child;
}