Skip to content

Commit

Permalink
Force kill qed and agents in test scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
suizman authored and iknite committed Feb 19, 2019
1 parent d3ce718 commit f7d7681
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/stop_agents
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

echo Cleanup...
if [ $(uname) == "Darwin" ]; then
killall agent || exit 0
killall -9 agent || exit 0
else
fuser -k -n tcp 8301 8201 8101 18301 18201 18101 || true
fi
Expand Down
2 changes: 1 addition & 1 deletion tests/stop_server
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

echo Cleanup...
if [ $(uname) == "Darwin" ]; then
killall main || exit 0
killall -9 main || exit 0
else
fuser -k -n tcp 8800 8801 8802 8803 8804 || true
fi
Expand Down

0 comments on commit f7d7681

Please sign in to comment.