Skip to content

Commit

Permalink
OOD-13: env variable lower case for new env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
rundtjan committed Jul 30, 2024
1 parent 40b27cb commit 0966a04
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docker-compose.fd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ services:
SIS_IMPORTER_USER: dev
SIS_NATS_TOKEN: dev
SIS_NATS_URI: sis-updater-nats://sis-updater-nats:4222
SERVICE_PROVIDER: 'Fd'
SERVICE_PROVIDER: fd
ports:
- 8082:8082
volumes:
Expand Down Expand Up @@ -157,7 +157,7 @@ services:
SIS_NATS_TOKEN: dev
SIS_NATS_URI: sis-updater-nats://sis-updater-nats:4222
ROOT_ORG_ID: ${ROOT_ORG_ID}
SERVICE_PROVIDER: 'Fd'
SERVICE_PROVIDER: fd
volumes:
- ./updater/sis-updater-worker/:/opt/app-root/src

Expand Down
2 changes: 1 addition & 1 deletion updater/sis-updater-scheduler/src/utils/logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ if (isDev) {

transports.push(new winston.transports.Console({ format: combine(splat(), timestamp(), prodFormat) }))

if (isProduction && !isStaging && serviceProvider !== 'Fd') {
if (isProduction && !isStaging && serviceProvider !== 'fd') {
transports.push(
new WinstonGelfTransporter({
handleExceptions: true,
Expand Down
2 changes: 1 addition & 1 deletion updater/sis-updater-worker/src/utils/logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ transports.push(
})
)

if (isProduction && !isStaging && serviceProvider !== 'Fd') {
if (isProduction && !isStaging && serviceProvider !== 'fd') {
transports.push(
new WinstonGelfTransporter({
handleExceptions: true,
Expand Down

0 comments on commit 0966a04

Please sign in to comment.