@@ -306,8 +306,8 @@ function BaseChaosSuite(testOpts) {
306
306
tests.push([&qu
8000
ot;p" + i, code]);
307
307
}
308
308
309
- // run the suite for 5 minutes
310
- runParallelArangoshTests(tests, 5 * 60, coordination_cn);
309
+ // run the suite for 3 minutes
310
+ runParallelArangoshTests(tests, 3 * 60, coordination_cn);
311
311
312
312
print("Finished load test - waiting for cluster to get in sync before checking consistency." );
313
313
clearAllFailurePoints();
@@ -317,7 +317,9 @@ function BaseChaosSuite(testOpts) {
317
317
};
318
318
}
319
319
320
- const params = ["IntermediateCommits" , "FailurePoints" , "Delays" , "Truncate" , "VaryingOverwriteMode" , "StreamingTransactions" ];
320
+ const params = ["IntermediateCommits" , "FailurePoints" , "Delays" , "StreamingTransactions" ];
321
+
322
+ const fixedParams = ["Truncate" , "VaryingOverwriteMode" ]; // these parameters are always enabled
321
323
322
324
const makeConfig = (paramValues) => {
323
325
let suffix = "" ;
@@ -327,6 +329,10 @@ const makeConfig = (paramValues) => {
327
329
suffix += params[j];
328
330
opts["with" + params[j]] = paramValues[j];
329
331
}
332
+ for (const p of fixedParams) {
333
+ suffix += "_with_" + p;
334
+ opts["with" + p] = true ;
335
+ }
330
336
return { suffix: suffix, options: opts };
331
337
};
332
338
0 commit comments