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 d7aa808 commit b1f2c40Copy full SHA for b1f2c40
shim/opentelemetry-opentracing-shim/src/opentelemetry/shim/opentracing_shim/__init__.py
@@ -614,11 +614,11 @@ def start_active_span(
614
615
def start_span(
616
self,
617
- operation_name: Optional[str] = None,
618
- child_of: Optional[Union[SpanShim, SpanContextShim]] = None,
619
- references: Optional[list] = None,
+ operation_name: str | None = None,
+ child_of: SpanShim | SpanContextShim | None = None,
+ references: list | None = None,
620
tags: Attributes = None,
621
- start_time: Optional[float] = None,
+ start_time: float | None = None,
622
ignore_active_span: bool = False,
623
) -> SpanShim:
624
"""Implements the ``start_span()`` method from the base class.
0 commit comments