-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Story 11250 - fix(dev-tools): upgrade mongo version (#1540)
* fix(dev-tools): upgrade mongo version * make api gateway disabled in dev env by default --------- Co-authored-by: Daniel Radeau <daniel.radeau.ext@culture.gouv.fr> Co-authored-by: Benaissa BENARBIA <ben.benarbia@gmail.com>
- Loading branch information
1 parent
34ae91a
commit 35761b7
Showing
11 changed files
with
43 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,7 +76,7 @@ spring: | |
on-profile: gateway | ||
|
||
gateway: | ||
enabled: true | ||
enabled: false | ||
server: | ||
ssl: | ||
client-auth: want | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,7 +84,7 @@ spring: | |
on-profile: gateway | ||
|
||
gateway: | ||
enabled: true | ||
enabled: false | ||
server: | ||
ssl: | ||
client-auth: want | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
rs.initiate({ | ||
"_id" : "rs0", | ||
"members" : [ | ||
{ | ||
"_id" : 0, | ||
"host" : "vitamui-mongo:27018", | ||
"priority": 1, | ||
"slaveDelay" : NumberLong(0), | ||
"votes" : 1 | ||
} | ||
] | ||
_id: "rs0", | ||
members: [ | ||
{ | ||
_id: 0, | ||
host: "vitamui-mongo:27018", | ||
priority: 1, | ||
secondaryDelaySecs: NumberLong(0), | ||
votes: 1, | ||
}, | ||
], | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters