This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-4.8.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-4.8.x by this push:
     new e336da01182 Add ACTIVE_SPAN mapping to ExchangePropertyKey
e336da01182 is described below

commit e336da0118243b06b7531dc81a5ade97f8256c13
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Thu Oct 3 11:23:36 2024 +0200

    Add ACTIVE_SPAN mapping to ExchangePropertyKey
---
 core/camel-api/src/main/java/org/apache/camel/ExchangePropertyKey.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/core/camel-api/src/main/java/org/apache/camel/ExchangePropertyKey.java 
b/core/camel-api/src/main/java/org/apache/camel/ExchangePropertyKey.java
index 403a6b03739..fb04bedf8fa 100644
--- a/core/camel-api/src/main/java/org/apache/camel/ExchangePropertyKey.java
+++ b/core/camel-api/src/main/java/org/apache/camel/ExchangePropertyKey.java
@@ -89,6 +89,8 @@ public enum ExchangePropertyKey {
 
     public static ExchangePropertyKey asExchangePropertyKey(String name) {
         switch (name) {
+            case Exchange.ACTIVE_SPAN:
+                return ACTIVE_SPAN;
             case Exchange.AGGREGATED_COMPLETED_BY:
                 return AGGREGATED_COMPLETED_BY;
             case Exchange.AGGREGATED_CORRELATION_KEY:

Reply via email to