Skip to content

Commit

Permalink
- Update test_error_handling bpmn to switch to new output variable
Browse files Browse the repository at this point in the history
- Updated mac modeler version
  • Loading branch information
James Wood authored and James Wood committed Jun 27, 2024
1 parent 2c37af2 commit 2aa5ca4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions install/dev/bpmn/test_error_handling.bpmn
Original file line number Diff line number Diff line change
Expand Up @@ -329,10 +329,10 @@
</bpmn:exclusiveGateway>
<bpmn:sequenceFlow id="SequenceFlow_0tftgbi" sourceRef="Task_153ch63" targetRef="ExclusiveGateway_0pi2f5r" />
<bpmn:sequenceFlow id="SequenceFlow_17ubkbm" sourceRef="ExclusiveGateway_0pi2f5r" targetRef="Task_169nxbp">
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${Task_153ch63_exitValue != "5" || Task_153ch63_success != "false"}</bpmn:conditionExpression>
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${Task_153ch63_out.jsonPath("$.exitCode").numberValue() != 5 || Task_153ch63_out.jsonPath("$.success").boolValue() == true}</bpmn:conditionExpression>
</bpmn:sequenceFlow>
<bpmn:sequenceFlow id="SequenceFlow_0zrbl5f" sourceRef="ExclusiveGateway_0pi2f5r" targetRef="Task_09xvn30">
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${Task_153ch63_exitValue == "5" &amp;&amp; Task_153ch63_success == "false"}</bpmn:conditionExpression>
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${Task_153ch63_out.jsonPath("$.exitCode").numberValue() == 5 &amp;&amp; Task_153ch63_out.jsonPath("$.success").boolValue() == false}</bpmn:conditionExpression>
</bpmn:sequenceFlow>
<bpmn:serviceTask id="Task_09xvn30" name="LOG: SUCCESS, EXEC 5" camunda:modelerTemplate="jpl.cws.task.LogTask" camunda:class="jpl.cws.task.LogTask">
<bpmn:extensionElements>
Expand Down Expand Up @@ -1150,7 +1150,7 @@
</bpmn:exclusiveGateway>
<bpmn:sequenceFlow id="SequenceFlow_1jeej0r" sourceRef="SubProcess_18wkc4m" targetRef="ExclusiveGateway_1mqy34e" />
<bpmn:sequenceFlow id="SequenceFlow_1tsitl7" sourceRef="ExclusiveGateway_1mqy34e" targetRef="ServiceTask_1ufgxlc">
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${ServiceTask_0f2syr4_output == "count = 9" &amp;&amp; ServiceTask_0f2syr4_success == "true"}</bpmn:conditionExpression>
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${ServiceTask_0f2syr4_out.jsonPath("$.stdout").stringValue() == "count = 9" &amp;&amp; ServiceTask_0f2syr4_out.jsonPath("$.success").boolValue() == true}</bpmn:conditionExpression>
</bpmn:sequenceFlow>
<bpmn:sequenceFlow id="SequenceFlow_0i1vvi9" sourceRef="ExclusiveGateway_1mqy34e" targetRef="ServiceTask_1al0pck" />
<bpmn:endEvent id="EndEvent_10r6hd2" name="EXEC 13 FAILED">
Expand Down
2 changes: 1 addition & 1 deletion install/modeler/install_mac_modeler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ cd temp

echo
echo "Downloading camunda modeler now..."
curl -LO https://downloads.camunda.cloud/release/camunda-modeler/5.11.0/camunda-modeler-5.11.0-mac.zip
curl -LO https://downloads.camunda.cloud/release/camunda-modeler/5.24.0/camunda-modeler-5.24.0-mac-arm64.zip

unzip *.zip

Expand Down

0 comments on commit 2aa5ca4

Please sign in to comment.