Skip to content

Commit

Permalink
Remove wrong empty docker --filter
Browse files Browse the repository at this point in the history
Fixes #127
  • Loading branch information
stronk7 committed Jul 31, 2024
1 parent ea9b761 commit 0acbf94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runner/main/modules/docker-healthy/docker-healthy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ function docker-healthy_setup() {
startingcount=$(($(docker ps -a --filter name="${UUID}" | c1grep -e starting -e unhealthy | wc -l)))
if [[ ${startingcount} -gt 0 ]]; then
print_error "Some containers were too slow. Aborting the run:"
exit_error "$(docker ps -a --filter name="${UUID}" --filter | c1grep -e starting -e unhealthy)"
exit_error "$(docker ps -a --filter name="${UUID}" | c1grep -e starting -e unhealthy)"
fi
echo "All containers started OK"

echo "============================================================================"
echo ">>> stopsection <<<"
}
}

0 comments on commit 0acbf94

Please sign in to comment.