Skip to content

Commit

Permalink
correct ip binding
Browse files Browse the repository at this point in the history
  • Loading branch information
MiaAltieri committed Sep 19, 2023
1 parent 49cba1b commit 563f049
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/charms/mongodb/v0/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def get_mongos_args(config: MongoDBConfiguration) -> str:
cmd = [
# mongos on config server side should run on 0.0.0.0 so it can be accessed by other units
# in the sharded cluster
"--bind_ip",
"--bind_ip_all",
f"--configdb {config_server_uri}",
# config server is already using 27017
f"--port {Config.MONGOS_PORT}",
Expand Down

0 comments on commit 563f049

Please sign in to comment.