From e492400d24a427032d698cfabb51e6f6a85e1912 Mon Sep 17 00:00:00 2001 From: Enrique Date: Tue, 5 Nov 2024 09:31:01 +0100 Subject: [PATCH] [incubator-kie-issues-1550] Add Transaction error handling when transaction is enabled (#2030) --- .../src/main/resources/application.properties | 2 ++ .../src/main/resources/application.properties | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/kogito-quarkus-examples/process-quarkus-example/src/main/resources/application.properties b/kogito-quarkus-examples/process-quarkus-example/src/main/resources/application.properties index 58d33b2d1a..ebbdda34cf 100644 --- a/kogito-quarkus-examples/process-quarkus-example/src/main/resources/application.properties +++ b/kogito-quarkus-examples/process-quarkus-example/src/main/resources/application.properties @@ -42,3 +42,5 @@ mp.messaging.outgoing.kogito-variables-events.value.serializer=org.apache.kafka. mp.messaging.outgoing.kogito-processdefinitions-events.connector=smallrye-kafka mp.messaging.outgoing.kogito-processdefinitions-events.topic=kogito-processdefinitions-events mp.messaging.outgoing.kogito-processdefinitions-events.value.serializer=org.apache.kafka.common.serialization.StringSerializer + +kogito.transactionEnabled=false diff --git a/kogito-springboot-examples/process-springboot-example/src/main/resources/application.properties b/kogito-springboot-examples/process-springboot-example/src/main/resources/application.properties index 0374f16b12..64ca4e002f 100644 --- a/kogito-springboot-examples/process-springboot-example/src/main/resources/application.properties +++ b/kogito-springboot-examples/process-springboot-example/src/main/resources/application.properties @@ -24,4 +24,6 @@ infinispan.remote.server-list=localhost:11222 spring.kafka.bootstrap-servers=localhost:9092 spring.kafka.producer.key-serializer=org.apache.kafka.common.serialization.StringSerializer -spring.kafka.producer.value-serializer=org.apache.kafka.common.serialization.StringSerializer \ No newline at end of file +spring.kafka.producer.value-serializer=org.apache.kafka.common.serialization.StringSerializer + +kogito.transactionEnabled=false \ No newline at end of file