Skip to content

Commit fb93827

Browse files
committed
feat: fix
1 parent b1d80b4 commit fb93827

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aperag/trace/mcp_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def get_current_trace_info() -> Tuple[Optional[str], Optional[str]]:
4747

4848
try:
4949
current_span = trace.get_current_span()
50-
if not current_span or not current_span.is_recording():
50+
if not current_span:
5151
return None, None
5252

5353
span_context = current_span.get_span_context()

0 commit comments

Comments
 (0)