summaryrefslogtreecommitdiffstats
path: root/contrib/python/grpcio/py3/patches/fix-grpc-aio-call.patch
blob: 2bda8eabe460a0285fcd74d7e8bcdbd5723fd60b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- a/src/python/grpcio/grpc/aio/_call.py	(index)
+++ b/src/python/grpcio/grpc/aio/_call.py	(working tree)
@@ -575,7 +575,7 @@ class UnaryUnaryCall(_UnaryResponseMixin, Call, _base_call.UnaryUnaryCall):
         # https://github.com/python/cpython/blob/edad4d89e357c92f70c0324b937845d652b20afd/Lib/asyncio/tasks.py#L785
         try:
             serialized_response = await self._cython_call.unary_unary(
-                serialized_request, self._metadata, self._context
+                serialized_request, self._metadata,
             )
         except asyncio.CancelledError:
             if not self.cancelled():