Merge pull request #3273 from ayham291/mongo-replica

fix(mongo): use appName instead of localhost for replica set
This commit is contained in:
Mauricio Siu
2025-12-18 00:26:29 -06:00
committed by GitHub

View File

@@ -54,7 +54,7 @@ if [ "$REPLICA_STATUS" != "1" ]; then
mongosh --eval '
rs.initiate({
_id: "rs0",
members: [{ _id: 0, host: "localhost:27017", priority: 1 }]
members: [{ _id: 0, host: "${appName}:27017", priority: 1 }]
});
// Wait for the replica set to initialize