Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit fbda9af

Browse files
author
sachin-maheshwari
authored
Merge pull request #11 from topcoder-platform/develop
Shapeup#2 v5 user fortification - missing user syncing
2 parents 3a8d478 + 7ed4705 commit fbda9af

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,12 @@ workflows:
7070
branches:
7171
only:
7272
- develop
73+
- feature/shapeup2
7374

7475
# Production builds are exectuted only on tagged commits to the
7576
# master branch.
7677
- "build-prod":
7778
context : org-global
7879
filters:
7980
branches:
80-
only: master
81+
only: master

config/default.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ module.exports = {
1515
KAFKA_GROUP_ID: process.env.KAFKA_GROUP_ID || 'identity-processor',
1616

1717
IDENTITY_NOTIFICATION_CREATE: process.env.IDENTITY_NOTIFICATION_CREATE || 'identity.notification.create',
18+
USER_RECONCILATION_TOPIC: process.env.USER_RECONCILATION_TOPIC || 'legacy.sync.user',
1819

1920
AUTH0_URL: process.env.AUTH0_URL,
2021
AUTH0_UBAHN_AUDIENCE: process.env.AUTH0_UBAHN_AUDIENCE,

src/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const check = () => {
7171
return connected
7272
}
7373

74-
const topics = [config.IDENTITY_NOTIFICATION_CREATE]
74+
const topics = [config.IDENTITY_NOTIFICATION_CREATE, config.USER_RECONCILATION_TOPIC]
7575

7676
consumer
7777
.init([{

0 commit comments

Comments
 (0)