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

Commit 0dab121

Browse files
ramreddyapmyjavec
authored andcommitted
Reduced timeout value
Changing default timeout to 180 seconds As 300 seconds was too long to wait Signed-off-by: Paul Myjavec <[email protected]>
1 parent 5e24cde commit 0dab121

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

kelpy/deployment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def pod_selector(client, name, namespace="default"):
5555
return None
5656

5757

58-
def delete(client, name, namespace="default", wait_for_timeout=300):
58+
def delete(client, name, namespace="default", wait_for_timeout=180):
5959
try:
6060
response = client.delete_namespaced_deployment(name, namespace)
6161
except ApiException as e:

kelpy/namespace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def get(client, name):
4040
return None
4141

4242

43-
def delete(client, name, wait_for_timeout=300):
43+
def delete(client, name, wait_for_timeout=180):
4444
try:
4545
response = client.delete_namespace(name)
4646
except ApiException as e:

0 commit comments

Comments
 (0)