@@ -22,8 +22,8 @@ module.exports = {
22
22
database : process . env . PG_DATABASE || 'postgres' , // database must exist before running the tool
23
23
password : process . env . PG_PASSWORD || 'password' ,
24
24
port : parseInt ( process . env . PG_PORT , 10 ) || 5432 ,
25
- triggerFunctions : process . env . TRIGGER_FUNCTIONS || [ 'test_db_notifications' ] , // List of trigger functions to listen to
26
- triggerTopics : process . env . TRIGGER_TOPICS || [ 'test .db.postgres.sync' ] , // Names of the topic in the trigger payload
25
+ triggerFunctions : process . env . TRIGGER_FUNCTIONS || 'dev_db_notifications' , // List of trigger functions to listen to
26
+ triggerTopics : process . env . TRIGGER_TOPICS || [ 'dev .db.postgres.sync' ] , // Names of the topic in the trigger payload
27
27
triggerOriginators : process . env . TRIGGER_ORIGINATORS || [ 'tc-postgres-delta-processor' ] // Names of the originator in the trigger payload
28
28
} ,
29
29
KAFKA : { // Kafka connection options
@@ -38,7 +38,7 @@ module.exports = {
38
38
errorTopic : process . env . ERROR_TOPIC || 'db.scorecardtable.error' ,
39
39
recipients :
[ '[email protected] ' ] , // Kafka partitions to use,
40
40
KAFKA_URL : process . env . KAFKA_URL ,
41
- KAFKA_GROUP_ID : process . env . KAFKA_GROUP_ID || 'test -postgres-ifx-consumer' ,
41
+ KAFKA_GROUP_ID : process . env . KAFKA_GROUP_ID || 'dev -postgres-ifx-consumer' ,
42
42
KAFKA_CLIENT_CERT : process . env . KAFKA_CLIENT_CERT ? process . env . KAFKA_CLIENT_CERT . replace ( '\\n' , '\n' ) : null ,
43
43
KAFKA_CLIENT_CERT_KEY : process . env . KAFKA_CLIENT_CERT_KEY ? process . env . KAFKA_CLIENT_CERT_KEY . replace ( '\\n' , '\n' ) : null ,
44
44
} ,
@@ -54,7 +54,7 @@ module.exports = {
54
54
} ,
55
55
DYNAMODB :
56
56
{
57
- DYNAMODB_TABLE : process . env . DYNAMODB_TABLE || 'test_pg_ifx_payload_sync ' ,
57
+ DYNAMODB_TABLE : process . env . DYNAMODB_TABLE || 'dev_pg_ifx_payload_sync ' ,
58
58
DD_ElapsedTime : process . env . DD_ElapsedTime || 600000
59
59
} ,
60
60
0 commit comments