-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AAE-26100 Synchronize process definitions between runtime bundle and query services #1582
base: develop
Are you sure you want to change the base?
AAE-26100 Synchronize process definitions between runtime bundle and query services #1582
Conversation
41ed994
to
f6186fe
Compare
8425434
to
83eba2e
Compare
8fd77ff
to
ee44eab
Compare
fa6c0af
to
71ef9ea
Compare
71ef9ea
to
3daae59
Compare
Quality Gate passedIssues Measures |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great job @igdianov ! I like the usage of IntegrationFlows with the auto routing based on enriched headers. Maybe we can evolve the connector starters to use something similar in the future.
I've added only one small question. LGTM, otherwise
@@ -112,6 +113,7 @@ public void checkProcessInstanceHasVariableValue( | |||
Object variableValue | |||
) { | |||
await() | |||
.atMost(Duration.ofSeconds(30)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this needed? I was expecting the default timeout of 10 seconds to be enough.
This is part 1 of the implementation to add a command executor in the Process Runtime Service core to be able to trigger process definitions sync via a command message sent by the Query service via a batch job. The Process Runtime will handle the synchronization request by sending the process definitions back to Query via existing process deployed audit messages and return execution result to the requestor via command results channel.
Part of https://hyland.atlassian.net/browse/AAE-26100