Skip to content

Commit f5bc586

Browse files
authored
fix: correct the condition name (#6843)
1 parent 1a130da commit f5bc586

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: core/src/main/java/io/kestra/plugin/core/execution/Labels.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
" key: order_webhook",
6565
" type: io.kestra.plugin.core.trigger.Webhook",
6666
" conditions:",
67-
" - type: io.kestra.plugin.core.condition.ExpressionCondition",
67+
" - type: io.kestra.plugin.core.condition.Expression",
6868
" expression: \"{{ trigger.body.customerId is defined and trigger.body.orderId is defined and trigger.body.orderType is defined }}\""
6969
}
7070
)

Diff for: core/src/main/java/io/kestra/plugin/core/trigger/Webhook.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
type: io.kestra.plugin.core.trigger.Webhook
8989
key: 4wjtkzwVGBM9yKnjm3yv8r
9090
conditions:
91-
- type: io.kestra.plugin.core.condition.ExpressionCondition
91+
- type: io.kestra.plugin.core.condition.Expression
9292
expression: "{{ trigger.body.hello == 'world' }}"
9393
""",
9494
full = true

0 commit comments

Comments
 (0)