Remove async mark for set_trailing_metadata interface (#25814)

pull/25816/head
Lidi Zheng 4 years ago committed by GitHub
parent 1694984846
commit cccafaf10f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/python/grpcio/grpc/aio/_base_server.py

@ -193,7 +193,7 @@ class ServicerContext(Generic[RequestType, ResponseType], abc.ABC):
"""
@abc.abstractmethod
async def set_trailing_metadata(self, trailing_metadata: Metadata) -> None:
def set_trailing_metadata(self, trailing_metadata: Metadata) -> None:
"""Sends the trailing metadata for the RPC.
This method need not be called by implementations if they have no

Loading…
Cancel
Save