Skip to content

Commit

Permalink
nits fixed in skyserve::serve_state
Browse files Browse the repository at this point in the history
  • Loading branch information
root-hbx committed Nov 1, 2024
1 parent 51f7b93 commit 5b51fc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sky/serve/serve_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ def failed_statuses(cls) -> List['ReplicaStatus']:

@classmethod
def terminal_statuses(cls) -> List['ReplicaStatus']:
return [cls.SHUTTING_DOWN, cls.PREEMPTED, cls.UNKNOWN
] + cls.failed_statuses()
return [cls.SHUTTING_DOWN, cls.PREEMPTED
] + cls.failed_statuses()

@classmethod
def scale_down_decision_order(cls) -> List['ReplicaStatus']:
Expand Down

0 comments on commit 5b51fc4

Please sign in to comment.