forked from flowable/flowable-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed update of a migrated async external worker job with the new pro…
…cess definition id (flowable#3894)
- Loading branch information
1 parent
7683479
commit d43fb00
Showing
3 changed files
with
101 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
...ble/engine/test/api/runtime/migration/one-async-external-worker-simple-process.bpmn20.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<definitions id="definitions" xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:flowable="http://flowable.org/bpmn" targetNamespace="Examples"> | ||
|
||
<process id="MP" name="MyProcess" isExecutable="true"> | ||
<documentation>My process documentation</documentation> | ||
<startEvent id="startEvent1"/> | ||
<sequenceFlow id="seqFlow1Id" sourceRef="startEvent1" targetRef="externalWorker1Id"/> | ||
<serviceTask id="externalWorker1Id" name="externalWorkerName" flowable:type="external-worker" flowable:topic="topic1" flowable:async="true"/> | ||
<sequenceFlow id="seqFlow2Id" sourceRef="externalWorker1Id" targetRef="endEvent1"/> | ||
<endEvent id="endEvent1"/> | ||
</process> | ||
|
||
</definitions> |