From bd4eebfe7ab744955a848de8e306360ac59503f3 Mon Sep 17 00:00:00 2001 From: Fiete Ostkamp Date: Mon, 18 Aug 2025 07:44:09 +0200 Subject: [PATCH] Fix tracing - the spring.sleuth.propagation.type property has to be denoted as a list - the non-list declaration lead to a bean instantiation exception because spring could not bind the property to a list Issue-ID: SO-4230 Change-Id: I2035db3412692b33ffc32d9e1ccce715079932c3 Signed-off-by: Fiete Ostkamp --- so-cnf-adapter-application/src/main/resources/application.yaml | 4 +++- so-cnfm/so-cnfm-lcm/so-cnfm-lcm-bpmn-flows/pom.xml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/so-cnf-adapter-application/src/main/resources/application.yaml b/so-cnf-adapter-application/src/main/resources/application.yaml index dd36cb7..1d52efe 100644 --- a/so-cnf-adapter-application/src/main/resources/application.yaml +++ b/so-cnf-adapter-application/src/main/resources/application.yaml @@ -43,7 +43,9 @@ spring: probability: ${TRACING_SAMPLING_PROBABILITY:1.0} supports-join: false propagation: - type: w3c,bc + type: + - w3c + - b3 web: skip-pattern: ${TRACING_SKIP_PATTERN} diff --git a/so-cnfm/so-cnfm-lcm/so-cnfm-lcm-bpmn-flows/pom.xml b/so-cnfm/so-cnfm-lcm/so-cnfm-lcm-bpmn-flows/pom.xml index 117a323..9375662 100644 --- a/so-cnfm/so-cnfm-lcm/so-cnfm-lcm-bpmn-flows/pom.xml +++ b/so-cnfm/so-cnfm-lcm/so-cnfm-lcm-bpmn-flows/pom.xml @@ -23,7 +23,7 @@ DEBUG - 2 + suites false 1 -- 2.16.6