Skip to content

Commit e67bb11

Browse files
authored
Changes AC test check to check exited ps (#21672)
some docker compose changes no longer show exited processes. this broke out test this change should fix master tested in a runner that failed
1 parent 1b52c30 commit e67bb11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/bin/acceptance_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ get_epoch_time() {
1313
}
1414

1515
check_success() {
16-
docker compose ps | grep "^$1" | grep -ie 'exit 0' -ie 'exited (0)' >/dev/null || (echo "$1 didn't run successfully"; exit 1)
16+
docker compose ps --all | grep "^$1" | grep -ie 'exit 0' -ie 'exited (0)' >/dev/null || (echo "$1 didn't run successfully"; exit 1)
1717
}
1818

1919
##

0 commit comments

Comments
 (0)