Skip to content

Commit

Permalink
fix(bin/emqx): don't suppress wait_for command output, as it can pr…
Browse files Browse the repository at this point in the history
…int warning messages
  • Loading branch information
SergeTupchiy committed Sep 12, 2023
1 parent 6dd9e54 commit f790690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/emqx
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ wait_for() {
shift
CMD="$*"
while true; do
if $CMD >/dev/null 2>&1; then
if $CMD; then
return 0
fi
if [ "$WAIT_TIME" -le 0 ]; then
Expand Down

0 comments on commit f790690

Please sign in to comment.