Skip to content

Commit 31e222a

Browse files
committed
debug
1 parent 5ccabd5 commit 31e222a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@ jobs:
127127
echo "Waiting for cluster to be ready…"
128128
timeout 5m bash -c 'until docker exec mongo-test [ -e ready ]; do sleep 2; done'
129129
130-
echo "Server is ready. Connecting …"
131-
CONN=$(docker exec mongo-test cat ready | jq -r .connection_string)
130+
CONN=$(docker exec mongo-test cat ready | jq -r ".connection_string")
131+
echo "Server is ready. Connecting to $CONN …"
132132
133-
mongosh --quiet "$CONN" --eval '
133+
mongosh "$CONN" --eval '
134134
const expected = process.env.EXPECTED_VERSION;
135135
const im = db.adminCommand({ isMaster: 1 });
136136
const ver = db.version();

0 commit comments

Comments
 (0)