[DEV-5312] Correct lowercase environment variable
parent
5e5932fe9d
commit
f4b4a9d5d9
|
@ -48,7 +48,7 @@ const amqp_conf = createAmqpConfig( process.env );
|
|||
const prom_conf = createPrometheusConfig( process.env );
|
||||
const db_conf = createMongoConfig( process.env );
|
||||
const db = createMongoDB( db_conf );
|
||||
const process_interval_ms = +( process.env.process_interval_ms || 10000 );
|
||||
const process_interval_ms = +( process.env.PROCESS_INTERVAL_MS || 10000 );
|
||||
const env = process.env.NODE_ENV || 'Unknown Environment';
|
||||
const emitter = new EventEmitter();
|
||||
const log = new StandardLogger( console, ts_ctr, env );
|
||||
|
|
Loading…
Reference in New Issue