We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bd9f9c commit 3a7b0d3Copy full SHA for 3a7b0d3
cli.js
@@ -115,7 +115,7 @@ function run () {
115
data_file.test_start = start_time;
116
data_file.test_finish = data.time;
117
data_file.averege_requests = avghits;
118
- data_file.ran_for = ran_seconds;
+ data_file.test_duration_sec = ran_seconds;
119
data_file.avg_req_time = avgreq;
120
data_file.url = opts.requests[0];
121
data_file.random = random;
@@ -138,8 +138,8 @@ function run () {
138
console.log('Data written to file');
139
});
140
}
141
- }, opts.run_for * 1000 + 120000); // Wit for Bad requests for 2 minutes more
142
- }, opts.run_for * 1000);
+ }, opts.test_duration_sec * 1000 + 120000); // Wit for Bad requests for 2 minutes more
+ }, opts.test_duration_sec * 1000);
143
144
145
function parseHeaders (lines) {
0 commit comments