Skip to content

Commit 13c5bff

Browse files
committed
Increase overall timeout to 20 mins
thanks @janiskemper for the suggestion Signed-off-by: Matthias Büchse <matthias.buechse@alasca.cloud>
1 parent aa23eaa commit 13c5bff

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Tests/kaas/plugin/plugin_clusterstacks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616

1717
TEMPLATE_KEYS = ('cluster', 'clusterstack', 'kubeconfig')
18-
TIMEOUTS = [30] * 30 + [0] # wait at most 900 seconds (15 minutes); sentinel value at the end
18+
TIMEOUTS = [30] * 40 + [0] # wait at most 1200 seconds (20 minutes); sentinel value at the end
1919

2020

2121
class _ClusterOps:

Tests/kaas/plugin/plugin_gardener.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616

1717
TEMPLATE_KEYS = ('shoot', 'kubeconfig')
18-
TIMEOUTS = [30] * 30 + [0] # wait at most 900 seconds (15 minutes); sentinel value at the end
18+
TIMEOUTS = [30] * 40 + [0] # wait at most 1200 seconds (20 minutes); sentinel value at the end
1919

2020

2121
class _ShootOps:

0 commit comments

Comments
 (0)