Skip to content
This repository was archived by the owner on May 10, 2024. It is now read-only.

Commit 274b1ee

Browse files
author
B&R
committed
chore: Increase wait time
1 parent f737ab5 commit 274b1ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

framework/clientserverbase.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,14 +185,14 @@ def backup_has_status(self, name: str, expected: bool,
185185
result = out == 'true,false'
186186

187187
if result != expected and retries_left > 0:
188-
time.sleep(2)
188+
time.sleep(4)
189189
return self.backup_has_status(name, expected, kubectl_timeout, retries_left - 1)
190190

191191
return result
192192

193193
except sp.CalledProcessError:
194194
if retries_left > 0:
195-
time.sleep(2)
195+
time.sleep(4)
196196
return self.backup_has_status(name, expected, kubectl_timeout, retries_left - 1)
197197
raise
198198

0 commit comments

Comments
 (0)