We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ccabd5 commit 31e222aCopy full SHA for 31e222a
1 file changed
.github/workflows/test.yml
@@ -127,10 +127,10 @@ jobs:
127
echo "Waiting for cluster to be ready…"
128
timeout 5m bash -c 'until docker exec mongo-test [ -e ready ]; do sleep 2; done'
129
130
- echo "Server is ready. Connecting …"
131
- CONN=$(docker exec mongo-test cat ready | jq -r .connection_string)
+ CONN=$(docker exec mongo-test cat ready | jq -r ".connection_string")
+ echo "Server is ready. Connecting to $CONN …"
132
133
- mongosh --quiet "$CONN" --eval '
+ mongosh "$CONN" --eval '
134
const expected = process.env.EXPECTED_VERSION;
135
const im = db.adminCommand({ isMaster: 1 });
136
const ver = db.version();
0 commit comments