diff options
author | danielhanrahan <daniel.hanrahan@est.tech> | 2024-05-28 18:28:32 +0100 |
---|---|---|
committer | danielhanrahan <daniel.hanrahan@est.tech> | 2024-05-28 19:13:12 +0100 |
commit | acff577c5abef548b1234d88b9a4f284f7fdef60 (patch) | |
tree | c2f2f11e50b9b4e6b389cf338116ccb152662b60 /k6-tests/ncmp/2-wait-for-cmhandles-to-be-ready.js | |
parent | 76fb17f57bec04a96fc53f8c730755da4cbe2856 (diff) |
Adjust K6 thresholds
- Adjust timings based on previous runs.
- Reduce from 5 to 4 parallel clients for CM handle searches
to avoid OutOfMemoryErrors.
Issue-ID: CPS-2208
Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech>
Change-Id: I339cc3df84b2295bb11371ab73b4948f43615c15
Diffstat (limited to 'k6-tests/ncmp/2-wait-for-cmhandles-to-be-ready.js')
-rw-r--r-- | k6-tests/ncmp/2-wait-for-cmhandles-to-be-ready.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/k6-tests/ncmp/2-wait-for-cmhandles-to-be-ready.js b/k6-tests/ncmp/2-wait-for-cmhandles-to-be-ready.js index 4ecadde2b4..5d54c60f47 100644 --- a/k6-tests/ncmp/2-wait-for-cmhandles-to-be-ready.js +++ b/k6-tests/ncmp/2-wait-for-cmhandles-to-be-ready.js @@ -27,7 +27,7 @@ export const options = { iterations: 1, thresholds: { http_req_failed: ['rate == 0'], - iteration_duration: ['max <= 300_000'], // 5 minutes + iteration_duration: ['max <= 260000'], // 4m20s }, }; @@ -67,4 +67,4 @@ export function handleSummary(data) { return { stdout: makeCustomSummaryReport(data, options), }; -}
\ No newline at end of file +} |