Skip to content

Commit

Permalink
address comments (iter VI)
Browse files Browse the repository at this point in the history
  • Loading branch information
IbraAoad committed Aug 22, 2024
1 parent 71154a1 commit 8cb3437
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,9 @@ def _is_waypoint_deployment_ready(self) -> bool:
and deployment.status.readyReplicas == deployment.status.replicas
):
return True
except ApiError as e:
logger.error(f"Error checking waypoint deployment status: {e}")
logger.info("Deployment not ready, retrying...")
except ApiError:
logger.info("Deployment not found, retrying...")

time.sleep(check_interval)

Expand Down

0 comments on commit 8cb3437

Please sign in to comment.