Skip to content

Commit 1a63147

Browse files
committed
Changed global property
1 parent ddfac63 commit 1a63147

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

  • apps-integration-tests/integration-tests-data-index-service/integration-tests-data-index-service-common/src/test/java/org/kie/kogito/index
  • kogito-apps-quarkus/integration-tests-data-index-service-quarkus-parent/integration-tests-data-index-service-quarkus/src/main/resources
  • kogito-apps-springboot/integration-tests-data-index-service-springboot/src/main/resources

apps-integration-tests/integration-tests-data-index-service/integration-tests-data-index-service-common/src/test/java/org/kie/kogito/index/AbstractRecordInputOutputIT.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* Tests verify that service task input/output arguments are correctly recorded and indexed
3737
* based on the three-level hierarchy: node-level > process-level > global-level.
3838
*
39-
* The global property kogito.processes.service-tasks.record-io=true is set in application.properties.
39+
* The global property kogito.processes.nodes.record-io=true is set in application.properties.
4040
*/
4141
public abstract class AbstractRecordInputOutputIT {
4242

@@ -144,7 +144,7 @@ public void testNodeTrueOverridesProcessFalse() {
144144

145145
/**
146146
* Configuration: No recordArgs metadata (falls back to global property)
147-
* Global Property: kogito.processes.service-tasks.record-io=true
147+
* Global Property: kogito.processes.nodes.record-io=true
148148
* Expected: inputArgs and outputArgs are recorded (global property is true)
149149
*/
150150
@Test
@@ -157,7 +157,7 @@ public void testNoMetadataUsesGlobalProperty() {
157157
* Verifies that each task respects its own configuration independently.
158158
*
159159
* Configuration:
160-
* - Global-level: kogito.processes.service-tasks.record-io=true
160+
* - Global-level: kogito.processes.nodes.record-io=true
161161
* - Process-level: recordArgs=true
162162
* - Service Task 1: recordArgs=true (explicit node-level)
163163
* - Service Task 2: recordArgs=false (explicit node-level)

kogito-apps-quarkus/integration-tests-data-index-service-quarkus-parent/integration-tests-data-index-service-quarkus/src/main/resources/application.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
kogito.persistence.type=filesystem
2121
kogito.service.url=http://localhost:8080
2222

23-
# Enable recording of service task input/output arguments
24-
kogito.processes.service-tasks.record-io=true
23+
# Enable recording of node input/output arguments
24+
kogito.processes.nodes.record-io=true
2525

2626
mp.messaging.outgoing.kogito-processinstances-events.connector=smallrye-kafka
2727
mp.messaging.outgoing.kogito-processinstances-events.topic=kogito-processinstances-events

kogito-apps-springboot/integration-tests-data-index-service-springboot/src/main/resources/application.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ spring.kafka.consumer.auto-offset-reset=earliest
2323
spring.kafka.producer.key-serializer=org.apache.kafka.common.serialization.StringSerializer
2424
spring.kafka.producer.value-serializer=org.apache.kafka.common.serialization.StringSerializer
2525

26-
# Enable recording of service task input/output arguments
27-
kogito.processes.service-tasks.record-io=true
26+
# Enable recording of node input/output arguments
27+
kogito.processes.nodes.record-io=true

0 commit comments

Comments
 (0)