martinweiler commented on code in PR #2030: URL: https://github.com/apache/incubator-kie-kogito-examples/pull/2030#discussion_r1831213498
########## 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 Review Comment: @yesamer both formats of the property are correct, it's either a global or a per-subsystem setting: ``` kogito.transactionEnabled=false # tx enabled globally #kogito.processes.transactionEnabled=true # tx enabled for the processes subsystem #kogito.usertasks.transactionEnabled=true # tx enabled for the usertasks subsystem ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
