Skip to content

Commit

Permalink
added container status logging
Browse files Browse the repository at this point in the history
  • Loading branch information
DenysGonchar committed Nov 24, 2020
1 parent c44b00b commit dfc5f74
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion integration_test/helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ function get_health_status() {
}

function container_is_healthy() {
[ "$(get_health_status "$1")" = "\"healthy\"" ]
local health_status="$(get_health_status "$1")"
echo "$1 container health status == '${health_status}'"
[ "$health_status" = "\"healthy\"" ]
}

function wait_for_healthcheck() {
Expand Down

0 comments on commit dfc5f74

Please sign in to comment.