diff options
author | Daniel Hanrahan <daniel.hanrahan@est.tech> | 2024-09-19 10:44:51 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2024-09-19 10:44:51 +0000 |
commit | 1adc7badba0e35daa238e3d2c48c66f1dba1dab3 (patch) | |
tree | b0e5e35b56b5fe986bb3f76b6eb2c9021fa7b50d | |
parent | 9d967bc4a63238d1bd147155b4c3abf95c2ac7c5 (diff) | |
parent | 8ea90c96dab9187ee5ed5b6eb2f1bc85d0012e33 (diff) |
Merge "Change execution order of the legacy async batch read operation in k6 suite"
-rw-r--r-- | k6-tests/ncmp/ncmp-kpi.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/k6-tests/ncmp/ncmp-kpi.js b/k6-tests/ncmp/ncmp-kpi.js index 05500a60a3..f9a19c394f 100644 --- a/k6-tests/ncmp/ncmp-kpi.js +++ b/k6-tests/ncmp/ncmp-kpi.js @@ -47,6 +47,7 @@ const legacyBatchEventReader = new Reader({ }); const DURATION = '15m'; +const LEGACY_BATCH_THROUGHPUT_TEST_START_TIME = '15m30s'; export const options = { setupTimeout: '8m', @@ -93,14 +94,14 @@ export const options = { exec: 'legacyBatchProduceScenario', vus: 2, iterations: LEGACY_BATCH_THROUGHPUT_TEST_NUMBER_OF_REQUESTS, - maxDuration: DURATION, + startTime: LEGACY_BATCH_THROUGHPUT_TEST_START_TIME, }, legacy_batch_consume_scenario: { executor: 'per-vu-iterations', exec: 'legacyBatchConsumeScenario', vus: 1, iterations: 1, - maxDuration: DURATION, + startTime: LEGACY_BATCH_THROUGHPUT_TEST_START_TIME, } }, thresholds: { |