Skip to content

Commit f8a6a65

Browse files
committed
Update ocp.py
1 parent c1d3af5 commit f8a6a65

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/mas/devops/ocp.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -272,11 +272,11 @@ def waitForPVC(dynClient: DynamicClient, namespace: str, pvcName: str) -> bool:
272272
# After 5 retries increase the delay to 1 minute
273273
# After 10 retries increase the delay to 2 minutes
274274
# After 15 retries increase the delay to 5 minutes
275-
if retries == 5:
275+
if retries == 6:
276276
retryDelaySeconds = 60
277-
elif retries == 10:
277+
elif retries == 11:
278278
retryDelaySeconds = 120
279-
elif retries == 15:
279+
elif retries == 16:
280280
retryDelaySeconds = 300
281281

282282
try:

0 commit comments

Comments
 (0)