From 2322d911e974b65c716ff03969e174f33e89531b Mon Sep 17 00:00:00 2001 From: Cyrille <1618640+cyri113@users.noreply.github.com> Date: Wed, 14 Feb 2024 13:04:49 +0100 Subject: [PATCH] Fix mongo healthcheck --- development/mongo/healthcheck.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/development/mongo/healthcheck.js b/development/mongo/healthcheck.js index 6ec56ad..8c3aa82 100644 --- a/development/mongo/healthcheck.js +++ b/development/mongo/healthcheck.js @@ -6,7 +6,7 @@ function run() { var config = { _id: "rs0", members: [ - { _id: 0, host: "mongodb-dev" }, + { _id: 0, host: "mongodb" }, ] } rs.initiate(config)