Skip to content

Commit 2eb3261

Browse files
committed
fix: Reduce gracefulStop
1 parent 493f066 commit 2eb3261

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

benchmark/load/insecure-bank/k6.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,13 @@ export const options = {
1010
executor: 'constant-vus', // https://grafana.com/docs/k6/latest/using-k6/scenarios/executors/#all-executors
1111
vus: 5,
1212
duration: '25s',
13+
gracefulStop: '5s',
1314
},
1415
[`load--insecure-bank--${__ENV.VARIANT}--high_load`]: {
1516
executor: 'constant-vus',
1617
vus: 5,
1718
duration: '20s',
19+
gracefulStop: '5s',
1820
},
1921
}
2022
};

benchmark/load/petclinic/k6.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,13 @@ export const options = {
1010
executor: 'constant-vus', // https://grafana.com/docs/k6/latest/using-k6/scenarios/executors/#all-executors
1111
vus: 5,
1212
duration: '25s',
13+
gracefulStop: '5s',
1314
},
1415
[`load--petclinic--${__ENV.VARIANT}--high_load`]: {
1516
executor: 'constant-vus',
1617
vus: 5,
1718
duration: '20s',
19+
gracefulStop: '5s',
1820
},
1921
}
2022
};

0 commit comments

Comments
 (0)