Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "feat(tracer): [SVLS-5262] private Span Pointer Description" #10708

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions ddtrace/_trace/_span_pointer.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from enum import Enum
from typing import Any
from typing import Dict
from typing import NamedTuple
from typing import Optional

from ddtrace._trace._span_link import SpanLink
Expand All @@ -18,18 +17,6 @@ class _SpanPointerDirection(Enum):
DOWNSTREAM = "d"


class _SpanPointerDescription(NamedTuple):
# Not to be confused with _SpanPointer. This class describes the parameters
# required to attach a span pointer to a Span. It lets us decouple code
# that calculates span pointers from code that actually attaches them to
# the right Span.

pointer_kind: str
pointer_direction: _SpanPointerDirection
pointer_hash: str
extra_attributes: Dict[str, Any]


class _SpanPointer(SpanLink):
def __init__(
self,
Expand Down
Loading