diff options
Diffstat (limited to 'k6-tests/ncmp/1-create-cmhandles.js')
-rw-r--r-- | k6-tests/ncmp/1-create-cmhandles.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/k6-tests/ncmp/1-create-cmhandles.js b/k6-tests/ncmp/1-create-cmhandles.js index 9a5c22ad3f..1c64ab011c 100644 --- a/k6-tests/ncmp/1-create-cmhandles.js +++ b/k6-tests/ncmp/1-create-cmhandles.js @@ -19,13 +19,12 @@ */ import exec from 'k6/execution'; -import { TOTAL_CM_HANDLES, makeBatchOfCmHandleIds, makeCustomSummaryReport } from './common/utils.js'; +import { TOTAL_CM_HANDLES, REGISTRATION_BATCH_SIZE, makeBatchOfCmHandleIds, makeCustomSummaryReport } from './common/utils.js'; import { createCmHandles } from './common/cmhandle-crud.js'; -const BATCH_SIZE = 100; export const options = { vus: 1, - iterations: Math.ceil(TOTAL_CM_HANDLES / BATCH_SIZE), + iterations: Math.ceil(TOTAL_CM_HANDLES / REGISTRATION_BATCH_SIZE), thresholds: { http_req_failed: ['rate == 0'], http_req_duration: ['avg <= 850'], @@ -34,7 +33,7 @@ export const options = { export default function () { const batchNumber = exec.scenario.iterationInTest; - const nextBatchOfCmHandleIds = makeBatchOfCmHandleIds(BATCH_SIZE, batchNumber); + const nextBatchOfCmHandleIds = makeBatchOfCmHandleIds(REGISTRATION_BATCH_SIZE, batchNumber); createCmHandles(nextBatchOfCmHandleIds); } |