aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/src/grpc/_adapter/rear.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/src/grpc/_adapter/rear.py')
-rw-r--r--src/python/src/grpc/_adapter/rear.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/src/grpc/_adapter/rear.py b/src/python/src/grpc/_adapter/rear.py
index 2b93aa6331..dd0a486117 100644
--- a/src/python/src/grpc/_adapter/rear.py
+++ b/src/python/src/grpc/_adapter/rear.py
@@ -246,7 +246,7 @@ class RearLink(base_interfaces.RearLink, activated.Activated):
timeout: A duration of time in seconds to allow for the RPC.
"""
request_serializer = self._request_serializers[name]
- call = _low.Call(self._channel, name, self._host, time.time() + timeout)
+ call = _low.Call(self._channel, self._completion_queue, name, self._host, time.time() + timeout)
if self._metadata_transformer is not None:
metadata = self._metadata_transformer([])
for metadata_key, metadata_value in metadata: