Skip to content

Commit f0b87ad

Browse files
Update default.js
1 parent 76e05d4 commit f0b87ad

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

config/default.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ module.exports = {
2323
password: process.env.PG_PASSWORD || 'password',
2424
port: parseInt(process.env.PG_PORT, 10) || 5432,
2525

26-
triggerFunctions: process.env.TRIGGER_FUNCTIONS || 'dev_db_notifications', // List of trigger functions to listen to
27-
triggerTopics: process.env.TRIGGER_TOPICS || ['dev.db.postgres.sync'], // Names of the topic in the trigger payload
26+
triggerFunctions: process.env.TRIGGER_FUNCTIONS || 'prod_db_notifications', // List of trigger functions to listen to
27+
triggerTopics: process.env.TRIGGER_TOPICS || ['prod.db.postgres.sync'], // Names of the topic in the trigger payload
2828
triggerOriginators: process.env.TRIGGER_ORIGINATORS || ['tc-postgres-delta-processor'] // Names of the originator in the trigger payload
2929
},
3030
KAFKA: { // Kafka connection options
@@ -39,7 +39,7 @@ module.exports = {
3939
errorTopic: process.env.ERROR_TOPIC || 'db.scorecardtable.error',
4040
recipients: ['[email protected]'], // Kafka partitions to use,
4141
KAFKA_URL: process.env.KAFKA_URL,
42-
KAFKA_GROUP_ID: process.env.KAFKA_GROUP_ID || 'dev-postgres-ifx-consumer',
42+
KAFKA_GROUP_ID: process.env.KAFKA_GROUP_ID || 'prod-postgres-ifx-consumer',
4343
KAFKA_CLIENT_CERT: process.env.KAFKA_CLIENT_CERT ? process.env.KAFKA_CLIENT_CERT.replace('\\n', '\n') : null,
4444
KAFKA_CLIENT_CERT_KEY: process.env.KAFKA_CLIENT_CERT_KEY ? process.env.KAFKA_CLIENT_CERT_KEY.replace('\\n', '\n') : null,
4545
},
@@ -55,7 +55,7 @@ module.exports = {
5555
},
5656
DYNAMODB:
5757
{
58-
DYNAMODB_TABLE: process.env.DYNAMODB_TABLE || 'dev_pg_ifx_payload_sync',
58+
DYNAMODB_TABLE: process.env.DYNAMODB_TABLE || 'prod_pg_ifx_payload_sync',
5959
DD_ElapsedTime: process.env.DD_ElapsedTime || 600000
6060
},
6161

0 commit comments

Comments
 (0)