Skip to content

Commit

Permalink
make service termination more robust
Browse files Browse the repository at this point in the history
  • Loading branch information
Michaelvll committed Apr 3, 2024
1 parent 4260891 commit 6b0ed01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_smoke.py
Original file line number Diff line number Diff line change
Expand Up @@ -3035,7 +3035,7 @@ def _get_service_name() -> str:
' s=$(sky serve down -y {name});'
' echo "Trying to terminate {name}";'
' echo "$s";'
' echo "$s" | grep -q "scheduled to be terminated" && break;'
' echo "$s" | grep -q "scheduled to be terminated\|No service to terminate" && break;'
' sleep 10;'
'done)')

Expand Down

0 comments on commit 6b0ed01

Please sign in to comment.