Skip to content

Commit

Permalink
remove unused field
Browse files Browse the repository at this point in the history
Signed-off-by: Kamen Shah <[email protected]>
  • Loading branch information
KamenShah committed May 22, 2024
1 parent 7b51a44 commit 068b06f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions python/ray/serve/_private/common.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json
from dataclasses import asdict, dataclass, field
from enum import Enum
from typing import Awaitable, Callable, Dict, List, Optional
from typing import Awaitable, Callable, List, Optional

from ray.actor import ActorHandle
from ray.serve._private.constants import SERVE_DEFAULT_APP_NAME
Expand Down Expand Up @@ -698,9 +698,6 @@ class RequestMetadata:
# Serve's gRPC context associated with this request for getting and setting metadata
grpc_context: Optional[RayServegRPCContext] = None

# Tracing context
tracing_context: Optional[Dict[str, str]] = None

@property
def is_http_request(self) -> bool:
return self._request_protocol == RequestProtocol.HTTP
Expand Down

0 comments on commit 068b06f

Please sign in to comment.