Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
venkatajagannath committed Jun 21, 2024
1 parent f4106c3 commit 77e3ba8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions anyscale_provider/triggers/anyscale.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ def _get_current_status(self, service_name: str) -> str:
else:
return str(service_status.state)

def check_current_status(self, service_name: str) -> bool:
service_status = self.get_current_status(service_name)
def _check_current_status(self, service_name: str) -> bool:
service_status = self._get_current_status(service_name)
self.log.info(f"Current service status for {service_name} is: {service_status}")
return service_status in (
ServiceState.STARTING,
Expand Down

0 comments on commit 77e3ba8

Please sign in to comment.