Skip to content

Commit

Permalink
Ignore kill errors
Browse files Browse the repository at this point in the history
  • Loading branch information
efrecon committed Mar 16, 2024
1 parent c087e08 commit 7534a67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orchestrator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ cleanup() {

for pid in $ORCHESTRATOR_PIDS; do
verbose "Killing runner loop $pid"
kill "$pid"
kill "$pid" 2>/dev/null || true
done
verbose "Waiting for runners to die"
# shellcheck disable=SC2086 # We want to wait for all pids
Expand Down

0 comments on commit 7534a67

Please sign in to comment.