From 9bceee7507aedb8c7ce198f47ccbeb5ecd48bd92 Mon Sep 17 00:00:00 2001 From: Pavel Kotelevsky <38818382+chillleader@users.noreply.github.com> Date: Mon, 4 Nov 2024 16:45:43 +0100 Subject: [PATCH] fix: exclude output mappings from deduplication (#3575) --- .../main/java/io/camunda/connector/runtime/core/Keywords.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/connector-runtime/connector-runtime-core/src/main/java/io/camunda/connector/runtime/core/Keywords.java b/connector-runtime/connector-runtime-core/src/main/java/io/camunda/connector/runtime/core/Keywords.java index 5e7c892154..5109d5fde3 100644 --- a/connector-runtime/connector-runtime-core/src/main/java/io/camunda/connector/runtime/core/Keywords.java +++ b/connector-runtime/connector-runtime-core/src/main/java/io/camunda/connector/runtime/core/Keywords.java @@ -158,5 +158,7 @@ public enum DeduplicationMode { ACTIVATION_CONDITION_KEYWORD, MESSAGE_TTL, CORRELATION_REQUIRED_KEYWORD, - DEDUPLICATION_MODE_MANUAL_FLAG_KEYWORD); + DEDUPLICATION_MODE_MANUAL_FLAG_KEYWORD, + RESULT_EXPRESSION_KEYWORD, + RESULT_VARIABLE_KEYWORD); }