From 4b8c5552f70d5d078d9bf23abb5b8ab6f147b4fc Mon Sep 17 00:00:00 2001 From: williamlardier Date: Wed, 4 Dec 2024 17:48:36 +0100 Subject: [PATCH] Do not stop on error during repeated api calls - It may be prone to periodic instabilities - Not sopping won't change the result and make the step more close to what the sentence says Issue: ZENKO-4941 --- tests/ctst/common/common.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/ctst/common/common.ts b/tests/ctst/common/common.ts index 78926f1ae..163ee486a 100644 --- a/tests/ctst/common/common.ts +++ b/tests/ctst/common/common.ts @@ -353,8 +353,7 @@ When('the user tries to perform the current S3 action on the bucket {int} times } await runActionAgainstBucket(this, this.getSaved('currentAction').action); if (this.getResult().err) { - // stop at any error, the error will be evaluated in a separated step - return; + this.logger.debug('Error during repeated action', { error: this.getResult().err }); } await Utils.sleep(delay); }