bugfix: cluster_features was not updated

master
Sven Ketelsen 4 years ago
parent baed2bf51b
commit e6c74d9037

@ -64,13 +64,6 @@
<bpmn2:outgoing>Flow_1myfmc6</bpmn2:outgoing>
</bpmn2:parallelGateway>
<bpmn2:task id="Activity_1lo3ui2" name="Service Variablen ergänzen">
<bpmn2:extensionElements>
<camunda:inputOutput>
<camunda:outputParameter name="cluster_features">
<camunda:script scriptFormat="groovy">['connect'] + execution.getVariable('connect-features')</camunda:script>
</camunda:outputParameter>
</camunda:inputOutput>
</bpmn2:extensionElements>
<bpmn2:incoming>Flow_1w2pl97</bpmn2:incoming>
<bpmn2:outgoing>Flow_0l51s9z</bpmn2:outgoing>
</bpmn2:task>

@ -1,3 +1,5 @@
def cluster_features = ['connect'] + execution.getVariable('connect-features')
def env = [
cluster_features: cluster_features,
cluster_name: cluster.name,

@ -1,3 +1,5 @@
def cluster_features = ['connect'] + execution.getVariable('connect-features')
def env = [
cluster_features: cluster_features,
cluster_name: cluster.name,

Loading…
Cancel
Save