This repository was archived by the owner on Nov 15, 2024. It is now read-only.
File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,8 @@ const MongoCollections = Object.keys(DataCollections).concat([
89
89
moduleDirectory : ModuleDirectory ,
90
90
dataCollections : DataCollections ,
91
91
rawCollections : MongoCollections ,
92
- onprem : onPremSupportData
92
+ onprem : onPremSupportData ,
93
+ serviceName : 'codestream-server'
93
94
} ,
94
95
{
95
96
logger : Logger , // the logger used by ClusterWrapper itself
Original file line number Diff line number Diff line change 24
24
"SHARED_GENERAL_NEW_RELIC_SEC_API_URL" : " https://nrsec-workflow-api.staging-service.newrelic.com" ,
25
25
"SHARED_GENERAL_RUN_TIME_ENVIRONMENT" : " local" ,
26
26
"US_VAULT_HOST" : " https://vault-prd1a.r10.us.nr-ops.net:8200" ,
27
- "BASE_VAULT_PATH" : " containers/teams/codestream/services/codestream-server/base/ " ,
27
+ "BASE_VAULT_PATH" : " containers/teams/codestream/services" ,
28
28
"DEV_SECRETS_FILE" : " api_server/config/dev-secrets.json"
29
29
}
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ class ClusterWrapper {
60
60
async readDevSecrets ( ) {
61
61
if ( ! this . devSecrets ) { return ; }
62
62
const DevSecrets = require ( '@datanerd/codestream-utils' ) . VaultSecrets ;
63
- this . env = await DevSecrets . fetchAllBaseVaultSecrets ( ) ;
63
+ this . env = await DevSecrets . fetchAllBaseVaultSecrets ( this . serverOptions . serviceName ) ;
64
64
}
65
65
66
66
startWorkers ( ) {
You can’t perform that action at this time.
0 commit comments