From ecc238d9ffa789c9ac00d605f2b6830be9b3ad61 Mon Sep 17 00:00:00 2001 From: Chris Banks Date: Thu, 4 Apr 2024 22:43:53 +0100 Subject: [PATCH] DO NOT MERGE: debugging --- mongo.sh | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/mongo.sh b/mongo.sh index e2f0d3ab..db3c1542 100755 --- a/mongo.sh +++ b/mongo.sh @@ -16,17 +16,16 @@ failure_hints() { } docker_run() { - docker run --name router-mongo -dp 27017:27017 ghcr.io/alphagov/govuk-infrastructure/mongodb:016364bbefd79123a59be4ad2ce0f338688dc16f --replSet rs0 --quiet + docker run --name router-mongo -dp 27017:27017 ghcr.io/alphagov/govuk-infrastructure/mongodb:016364bbefd79123a59be4ad2ce0f338688dc16f --replSet rs0 } init_replicaset() { - docker exec router-mongo mongo --quiet --eval 'rs.initiate();' >/dev/null 2>&1 + docker exec router-mongo mongo --eval 'rs.initiate();' } healthy() { docker exec router-mongo mongo --quiet --eval \ - 'if (rs.status().members[0].health==1) print("healthy");' \ - 2>&1 | grep healthy >/dev/null + 'print(rs.status();' } # usage: retry_or_fatal description command-to-try @@ -34,15 +33,9 @@ retry_or_fatal() { n=20 echo -n "Waiting up to $n s for $1"; shift while [ "$n" -ge 0 ]; do - if "$@"; then - echo " done" - return - fi sleep 1 && echo -n . n=$((n-1)) done - echo "gave up" - exit 1 } stop() {