Skip to content

Commit 5361d8f

Browse files
committed
chore(mongo): mongo pass has special word
1 parent d6332ac commit 5361d8f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docker/full.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ services:
2525
- "27017:27017"
2626
environment:
2727
MONGO_INITDB_ROOT_USERNAME: fluxgate
28-
MONGO_INITDB_ROOT_PASSWORD: fluxgate123
28+
MONGO_INITDB_ROOT_PASSWORD: fluxgate123#$
2929
MONGO_INITDB_DATABASE: fluxgate
3030
volumes:
3131
- mongo-data:/data/db

fluxgate-samples/fluxgate-sample-standalone-java21/src/main/resources/application.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ fluxgate:
1010
# MongoDB configuration (uses FluxgateMongoAutoConfiguration)
1111
mongo:
1212
enabled: true
13-
uri: mongodb://fluxgate:fluxgate123@localhost:27017/fluxgate?authSource=admin
13+
uri: mongodb://fluxgate:fluxgate123%23%24@localhost:27017/fluxgate?authSource=admin
1414
database: fluxgate
1515
rule-collection: rate_limit_rules
1616
# Optional: Enable event logging by setting event-collection
1717
event-collection: rate_limit_events
1818
# DDL auto mode: validate (default) or create
19-
ddl-auto: validate
19+
ddl-auto: create
2020
# Redis configuration (uses FluxgateConfig)
2121
redis:
2222
enabled: true

0 commit comments

Comments
 (0)