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

Shapeup#2 v5 user fortification - missing user syncing #11

Merged
merged 2 commits into from
Apr 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,12 @@ workflows:
branches:
only:
- develop
- feature/shapeup2

# Production builds are exectuted only on tagged commits to the
# master branch.
- "build-prod":
context : org-global
filters:
branches:
only: master
only: master
1 change: 1 addition & 0 deletions config/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ module.exports = {
KAFKA_GROUP_ID: process.env.KAFKA_GROUP_ID || 'identity-processor',

IDENTITY_NOTIFICATION_CREATE: process.env.IDENTITY_NOTIFICATION_CREATE || 'identity.notification.create',
USER_RECONCILATION_TOPIC: process.env.USER_RECONCILATION_TOPIC || 'legacy.sync.user',

AUTH0_URL: process.env.AUTH0_URL,
AUTH0_UBAHN_AUDIENCE: process.env.AUTH0_UBAHN_AUDIENCE,
Expand Down
2 changes: 1 addition & 1 deletion src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const check = () => {
return connected
}

const topics = [config.IDENTITY_NOTIFICATION_CREATE]
const topics = [config.IDENTITY_NOTIFICATION_CREATE, config.USER_RECONCILATION_TOPIC]

consumer
.init([{
Expand Down