Skip to content

Commit 12ab887

Browse files
committed
Notification method change
1 parent e35897b commit 12ab887

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ builddeploy_steps: &builddeploy_steps
3838
source awsenvconf
3939
# # producer deployment
4040
# ./unsetenv.sh
41-
# ./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${APPNAME}-producer-deployvar
42-
# source buildenvvar
43-
# ./master_deploy.sh -d ECS -e $DEPLOY_ENV -t latest -s ${LOGICAL_ENV}-global-appvar,${LOGICAL_ENV}-${APPNAME}-appvar -i ${APPNAME}
41+
./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${APPNAME}-producer-deployvar
42+
source buildenvvar
43+
./master_deploy.sh -d ECS -e $DEPLOY_ENV -t latest -s ${LOGICAL_ENV}-global-appvar,${LOGICAL_ENV}-${APPNAME}-appvar -i ${APPNAME}
4444
# # notify deployment
4545
# rm -rf buildenvvar
4646
# ./unsetenv.sh
@@ -56,9 +56,9 @@ builddeploy_steps: &builddeploy_steps
5656
# # without kafka dynamodb
5757
# rm -rf buildenvvar
5858
# ./unsetenv.sh
59-
./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${APPNAME}-withoutkafka-deployvar
60-
source buildenvvar
61-
./master_deploy.sh -d ECS -e $DEPLOY_ENV -t latest -s ${LOGICAL_ENV}-${APPNAME}-appvar,${LOGICAL_ENV}-${APPNAME}-withoutkafka-appvar -i ${APPNAME}
59+
# ./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${APPNAME}-withoutkafka-deployvar
60+
# source buildenvvar
61+
# ./master_deploy.sh -d ECS -e $DEPLOY_ENV -t latest -s ${LOGICAL_ENV}-${APPNAME}-appvar,${LOGICAL_ENV}-${APPNAME}-withoutkafka-appvar -i ${APPNAME}
6262
# # reconciler deployment
6363
# rm -rf buildenvvar
6464
# ./unsetenv.sh

src/nodeserver.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ app.post('/kafkaevents', async (req, res, next) => {
5050
if (!kafka_error) {
5151
logger.info("Kafka Message posted successfully to the topic : " + config.topic_error.NAME)
5252
} else {
53-
notify_msg = `Originator : Primary Producer \n` +
53+
notify_msg = `Originator : IFX-PG Primary Producer \n` +
5454
`Status : Kafka pulish message failed. Also unable to post the error in kafka error topic due to errors \n` +
5555
`SequnceId : ${seqID}`
5656
await slack.send_msg_to_slack(notify_msg);

0 commit comments

Comments
 (0)