Skip to content

Commit 6939ad5

Browse files
committed
fix: Shift start time
1 parent 2eb3261 commit 6939ad5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

benchmark/load/insecure-bank/k6.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ export const options = {
99
[`load--insecure-bank--${__ENV.VARIANT}--warmup`]: {
1010
executor: 'constant-vus', // https://grafana.com/docs/k6/latest/using-k6/scenarios/executors/#all-executors
1111
vus: 5,
12-
duration: '25s',
12+
duration: '15s',
1313
gracefulStop: '5s',
1414
},
1515
[`load--insecure-bank--${__ENV.VARIANT}--high_load`]: {
1616
executor: 'constant-vus',
1717
vus: 5,
18+
startTime: '15s',
1819
duration: '20s',
1920
gracefulStop: '5s',
2021
},

benchmark/load/petclinic/k6.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ export const options = {
99
[`load--petclinic--${__ENV.VARIANT}--warmup`]: {
1010
executor: 'constant-vus', // https://grafana.com/docs/k6/latest/using-k6/scenarios/executors/#all-executors
1111
vus: 5,
12-
duration: '25s',
12+
duration: '15s',
1313
gracefulStop: '5s',
1414
},
1515
[`load--petclinic--${__ENV.VARIANT}--high_load`]: {
1616
executor: 'constant-vus',
1717
vus: 5,
18+
startTime: '15s',
1819
duration: '20s',
1920
gracefulStop: '5s',
2021
},

0 commit comments

Comments
 (0)