We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea5b26e commit 64e55c5Copy full SHA for 64e55c5
.github/workflows/gateway-integration-test-postgres.yml
@@ -51,7 +51,8 @@ jobs:
51
52
timeout 90 bash -c 'until curl -fsS http://localhost:9090/health >/dev/null; do sleep 2; done'
53
54
- docker logs it-gateway-controller 2>&1 | grep -Eq "Initializing PostgreSQL storage|PostgreSQL schema up to date"
+ docker logs it-gateway-controller > /tmp/gateway-controller.log 2>&1 || true
55
+ grep -Eq "Initializing PostgreSQL storage|PostgreSQL schema up to date" /tmp/gateway-controller.log
56
57
schema_count="$(docker compose -p "$PROJECT" -f docker-compose.test.postgres.yaml exec -T postgres \
58
psql -U gateway -d gateway_test -tAc "SELECT COUNT(*) FROM schema_migrations WHERE id = 1 AND version >= 1;")"
0 commit comments