Skip to content

Commit

Permalink
Remove repeated output while waiting for deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
misohu committed Aug 28, 2024
1 parent 2909a75 commit 7d494b4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/dss/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,11 @@ def wait_for_deployment_ready(
raise TimeoutError(
f"Timeout waiting for deployment {deployment_name} in namespace {namespace} to be ready" # noqa E501
)

time.sleep(interval_seconds)
else:
time.sleep(interval_seconds)
logger.debug(
f"Waiting for deployment {deployment_name} in namespace {namespace} to be ready..."
)


def get_kubeconfig_path(
Expand Down

0 comments on commit 7d494b4

Please sign in to comment.