-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
4620 add historic process instance query to execute modification async #4624
4620 add historic process instance query to execute modification async #4624
Conversation
a7621b8
to
8c59deb
Compare
8c59deb
to
839b1f1
Compare
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.
I haven't completed the review, just share first glance problems.
...ne/src/test/java/org/camunda/bpm/engine/test/api/runtime/ModificationExecutionAsyncTest.java
Show resolved
Hide resolved
...ne/src/test/java/org/camunda/bpm/engine/test/api/runtime/ModificationExecutionAsyncTest.java
Show resolved
Hide resolved
engine-rest/engine-rest/src/main/java/org/camunda/bpm/engine/rest/dto/ModificationDto.java
Show resolved
Hide resolved
...e-rest-openapi/src/main/templates/models/org/camunda/bpm/engine/rest/dto/ModificationDto.ftl
Show resolved
Hide resolved
...e-rest/src/test/java/org/camunda/bpm/engine/rest/ModificationRestServiceInteractionTest.java
Show resolved
Hide resolved
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.
👍 Impl looks good, some tests need improvement + hint in the docs.
engine/src/main/java/org/camunda/bpm/engine/runtime/ModificationBuilder.java
Show resolved
Hide resolved
...ne/src/test/java/org/camunda/bpm/engine/test/api/runtime/ModificationExecutionAsyncTest.java
Outdated
Show resolved
Hide resolved
...ne/src/test/java/org/camunda/bpm/engine/test/api/runtime/ModificationExecutionAsyncTest.java
Outdated
Show resolved
Hide resolved
...ne/src/test/java/org/camunda/bpm/engine/test/api/runtime/ModificationExecutionAsyncTest.java
Outdated
Show resolved
Hide resolved
...ne/src/test/java/org/camunda/bpm/engine/test/api/runtime/ModificationExecutionAsyncTest.java
Outdated
Show resolved
Hide resolved
...ne/src/test/java/org/camunda/bpm/engine/test/api/runtime/ModificationExecutionAsyncTest.java
Show resolved
Hide resolved
...e-rest/src/test/java/org/camunda/bpm/engine/rest/ModificationRestServiceInteractionTest.java
Show resolved
Hide resolved
engine/src/test/java/org/camunda/bpm/engine/test/api/runtime/ModificationExecutionSyncTest.java
Show resolved
Hide resolved
Co-authored-by: yanavasileva <[email protected]>
…essInstanceQuery for modifications
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.
👍 Looks good. Thank you for considering by feedback.
...e-rest-openapi/src/main/templates/models/org/camunda/bpm/engine/rest/dto/ModificationDto.ftl
Outdated
Show resolved
Hide resolved
int processInstanceCount = 15; | ||
DeploymentWithDefinitions deployment = testRule.deploy(instance); | ||
ProcessDefinition processDefinition = deployment.getDeployedProcessDefinitions().get(0); | ||
List<String> processInstanceIds = helper.startInstances("process1", 15); |
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.
🙃 Not used.
List<String> processInstanceIds = helper.startInstances("process1", 15); |
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.
Removed List<String> processInstanceIds =
.
helper.startInstances("process1", 15);
is required for the test
...e-rest/src/test/java/org/camunda/bpm/engine/rest/ModificationRestServiceInteractionTest.java
Outdated
Show resolved
Hide resolved
Please wait for green CI before merge. |
Co-authored-by: yanavasileva <[email protected]>
related to: #4620