Skip to content

Commit

Permalink
increase the delete cluster timeout (#1238)
Browse files Browse the repository at this point in the history
A few Jenkins jobs failed because of the short timeout of the delete
cluster with the following error:

20:06:28  ods-ci-logger: INFO     ocm cluster with name xxxx exists!
20:07:24 ods-ci-logger: ERROR xxxx not deleted even after an hour.
EXITING

increasing the timeout from 60 minutes to 90 minutes

related to jira ticket: RHOAIENG-3917
  • Loading branch information
kobihk authored Feb 29, 2024
2 parents 99ba98b + 01a0ccb commit 4cc011c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ods_ci/utils/scripts/ocm/ocm.py
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@ def delete_cluster(self):
sys.exit(1)
self.wait_for_osd_cluster_to_get_deleted()

def wait_for_osd_cluster_to_get_deleted(self, timeout=3600):
def wait_for_osd_cluster_to_get_deleted(self, timeout=5400):
"""Waits for cluster to get deleted"""

count = 0
Expand Down

0 comments on commit 4cc011c

Please sign in to comment.