Fix tracing 42/141842/1
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Mon, 18 Aug 2025 05:44:09 +0000 (07:44 +0200)
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Mon, 18 Aug 2025 05:44:09 +0000 (07:44 +0200)
- 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 <Fiete.Ostkamp@telekom.de>
so-cnf-adapter-application/src/main/resources/application.yaml
so-cnfm/so-cnfm-lcm/so-cnfm-lcm-bpmn-flows/pom.xml

index dd36cb7..1d52efe 100644 (file)
@@ -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}
 
index 117a323..9375662 100644 (file)
@@ -23,7 +23,7 @@
                     <systemPropertyVariables>
                         <so.log.level>DEBUG</so.log.level>
                     </systemPropertyVariables>
-                    <rerunFailingTestsCount>2</rerunFailingTestsCount>
+                    <!-- <rerunFailingTestsCount>2</rerunFailingTestsCount> -->
                     <parallel>suites</parallel>
                     <useUnlimitedThreads>false</useUnlimitedThreads>
                     <threadCount>1</threadCount>