This repository was archived by the owner on Mar 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -70,11 +70,12 @@ workflows:
70
70
branches :
71
71
only :
72
72
- develop
73
+ - feature/shapeup2
73
74
74
75
# Production builds are exectuted only on tagged commits to the
75
76
# master branch.
76
77
- " build-prod " :
77
78
context : org-global
78
79
filters :
79
80
branches :
80
- only : master
81
+ only : master
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ module.exports = {
15
15
KAFKA_GROUP_ID : process . env . KAFKA_GROUP_ID || 'identity-processor' ,
16
16
17
17
IDENTITY_NOTIFICATION_CREATE : process . env . IDENTITY_NOTIFICATION_CREATE || 'identity.notification.create' ,
18
+ USER_RECONCILATION_TOPIC : process . env . USER_RECONCILATION_TOPIC || 'legacy.sync.user' ,
18
19
19
20
AUTH0_URL : process . env . AUTH0_URL ,
20
21
AUTH0_UBAHN_AUDIENCE : process . env . AUTH0_UBAHN_AUDIENCE ,
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ const check = () => {
71
71
return connected
72
72
}
73
73
74
- const topics = [ config . IDENTITY_NOTIFICATION_CREATE ]
74
+ const topics = [ config . IDENTITY_NOTIFICATION_CREATE , config . USER_RECONCILATION_TOPIC ]
75
75
76
76
consumer
77
77
. init ( [ {
You can’t perform that action at this time.
0 commit comments