We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f025b52 commit 2c98be2Copy full SHA for 2c98be2
cozeloop/internal/trace/span.py
@@ -456,11 +456,6 @@ def set_multi_modality_map(self, key: str):
456
self.multi_modality_key_map[key] = True
457
458
def set_baggage(self, baggage_item: Dict[str, str]):
459
- if not baggage_item:
460
- return
461
- self.set_baggage_escape(baggage_item)
462
-
463
- def set_baggage_escape(self, baggage_item: Dict[str, str]):
464
if not baggage_item:
465
return
466
try:
cozeloop/internal/trace/trace.py
@@ -145,7 +145,7 @@ def _start_span(self,
145
tag_truncate_conf=self.tag_truncate_conf,
146
)
147
148
- span.set_baggage_escape(baggage)
+ span.set_baggage(baggage)
149
return span
150
151
def flush(self):
0 commit comments