Skip to content

Commit

Permalink
autostoped => autostopped
Browse files Browse the repository at this point in the history
  • Loading branch information
kristopolous committed Jan 16, 2025
1 parent 7183fb3 commit 78fdcf6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sky/backends/backend_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2137,7 +2137,8 @@ def run_ray_status_to_check_ray_cluster_healthy() -> bool:
except exceptions.CommandError as e:
success = False
if e.returncode == 255:
logger.debug(f'The cluster is likely {noun}ed.')
word = 'autostopped' if noun == 'autostop' else 'autodowned'
logger.debug(f'The cluster is likely {word}.')
reset_local_autostop = False
except (Exception, SystemExit) as e: # pylint: disable=broad-except
success = False
Expand Down

0 comments on commit 78fdcf6

Please sign in to comment.