Output all elements when debugging
continuous-integration/drone/push Build is passing Details

This commit is contained in:
decentral1se 2021-07-04 21:59:47 +02:00
parent 43b4a01f8a
commit 07696760b7
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 1 additions and 1 deletions

2
abra
View File

@ -800,7 +800,7 @@ ensure_stack_deployed() {
idx=0
IFS=' ' read -r -a SERVICES <<< "$(docker stack services "${STACK_NAME}" --format "{{.ID}}" | tr '\n' ' ')"
debug "Considering the following service IDs: ${SERVICES} for ${STACK_NAME} deployment"
debug "Considering the following service IDs: ${SERVICES[*]} for ${STACK_NAME} deployment"
while [ ! $(( ${#HEALTHY[@]} + ${#MISSING[@]} )) -eq ${#SERVICES[@]} ]; do
for service in $(docker ps -f "name=$STACK_NAME" -q); do