Skip to content

Commit

Permalink
chore: fix risedev kill (#15191)
Browse files Browse the repository at this point in the history
  • Loading branch information
fuyufjh authored Feb 23, 2024
1 parent 219b1b1 commit c5f9014
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -757,10 +757,10 @@ tmux list-windows -t risedev -F "#{window_name} #{pane_id}" \
if [[ -n $(tmux list-windows -t risedev | grep kafka) ]];
then
echo "kill kafka"
kill_kafka
kill_kafka || true
echo "kill zookeeper"
kill_zookeeper
kill_zookeeper || true
# Kill their tmux sessions
tmux list-windows -t risedev -F "#{pane_id}" | xargs -I {} tmux send-keys -t {} C-c C-d
Expand Down

0 comments on commit c5f9014

Please sign in to comment.