Skip to content

Commit

Permalink
Merge pull request #5064 from sowmya695/MOSIP-29935
Browse files Browse the repository at this point in the history
MOSIP-29935 and MOSIP-27210 config changes
  • Loading branch information
Rakshitha650 authored Jan 9, 2024
2 parents 9f33f62 + 7fbf12d commit 4db2dc2
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 0 deletions.
4 changes: 4 additions & 0 deletions registration-processor-camel-routes-new-default.xml
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,10 @@
<jsonpath>$.[?(@['isValid'] == false &amp;&amp; @['internalError'] == false)]</jsonpath>
<to uri="workflow-cmd://complete-as-rejected" />
<to uri="workflow-cmd://anonymous-profile" />
</when>
<when>
<jsonpath suppressExceptions="true">$.[?(@['tags']['AGE_GROUP'] == 'INFANT')]</jsonpath>
<to uri="eventbus://verification-bus-in" />
</when>
<otherwise>
<to uri="eventbus://bio-dedupe-bus-in" />
Expand Down
4 changes: 4 additions & 0 deletions registration-processor-camel-routes-opencrvs_new-default.xml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,10 @@
<jsonpath>$.[?(@['isValid'] == false &amp;&amp; @['internalError'] == false)]</jsonpath>
<to uri="workflow-cmd://complete-as-rejected" />
<to uri="workflow-cmd://anonymous-profile" />
</when>
<when>
<jsonpath suppressExceptions="true">$.[?(@['tags']['AGE_GROUP'] == 'INFANT')]</jsonpath>
<to uri="eventbus://verification-bus-in" />
</when>
<otherwise>
<to uri="eventbus://uin-generator-bus-in" />
Expand Down
4 changes: 4 additions & 0 deletions registration-processor-camel-routes-update-default.xml
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,10 @@
<when>
<jsonpath suppressExceptions="true">$.[?(@['messageBusAddress']['address'] == 'manual-adjudication-bus-in')]</jsonpath>
<to uri="eventbus://manual-adjudication-bus-in" />
</when>
<when>
<jsonpath suppressExceptions="true">$.[?(@['tags']['AGE_GROUP'] == 'INFANT')]</jsonpath>
<to uri="eventbus://verification-bus-in" />
</when>
<otherwise>
<to uri="eventbus://bio-dedupe-bus-in" />
Expand Down
5 changes: 5 additions & 0 deletions registration-processor-default.properties
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,11 @@ mosip.regproc.workflow-manager.action.job.days_of_month=*
mosip.regproc.workflow-manager.action.job.months=*
#schedular weeks configuration
mosip.regproc.workflow-manager.action.job.days_of_week=*
# The packets which are satisfied below filter will restart from restart-from-stage
# For example BioDedupeStage:SUCCESS is given in filter and stage is SecurezoneNotificationStage then packet which latest transaction status code is SUCCESS and its in in BioDedupeStage then it will restart processing from SecurezoneNotificationStage.
registration.processor.reprocess.restart-from-stage=SecurezoneNotificationStage
# * means it will consider SUCCESS,REPROCESS,IN_PROGRESS latest transaction status codes, any stage having both * and another status, it will be considered to have all the statuses for that stage
registration.processor.reprocess.restart-trigger-filter=DemodedupStage:SUCCESS,BioDedupeStage:*,UinGeneratorStage:REPROCESS


mosip.regproc.workflow.manager.eventbus.kafka.commit.type=single
Expand Down

0 comments on commit 4db2dc2

Please sign in to comment.