aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_test/grpc_test/_core_over_links_base_interface_test.py
diff options
context:
space:
mode:
authorGravatar Nathaniel Manista <nathaniel@google.com>2015-08-31 05:11:52 +0000
committerGravatar Nathaniel Manista <nathaniel@google.com>2015-08-31 09:26:13 +0000
commit99355ce1cc6926d6a39b6660e8c60ad49e53d510 (patch)
tree3c7a69cd8c5bc455152d27b10483d639aefa8bc8 /src/python/grpcio_test/grpc_test/_core_over_links_base_interface_test.py
parent9e4d0610ea5e2bb302c6185648e9e126d1dd8d9c (diff)
Metadata plumbing and serialization tweaks
(1) Plumb the metadata transformer given at the Beta API through to the InvocationLink where it will be used. (2) In both InvocationLink and ServiceLink, if there isn't a registered serializer or deserializer, just pass the payload through rather than ignoring the entire RPC.
Diffstat (limited to 'src/python/grpcio_test/grpc_test/_core_over_links_base_interface_test.py')
-rw-r--r--src/python/grpcio_test/grpc_test/_core_over_links_base_interface_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/grpcio_test/grpc_test/_core_over_links_base_interface_test.py b/src/python/grpcio_test/grpc_test/_core_over_links_base_interface_test.py
index 9112c34190..f0bd989ea6 100644
--- a/src/python/grpcio_test/grpc_test/_core_over_links_base_interface_test.py
+++ b/src/python/grpcio_test/grpc_test/_core_over_links_base_interface_test.py
@@ -94,7 +94,7 @@ class _Implementation(test_interfaces.Implementation):
port = service_grpc_link.add_port('[::]:0', None)
channel = _intermediary_low.Channel('localhost:%d' % port, None)
invocation_grpc_link = invocation.invocation_link(
- channel, b'localhost',
+ channel, b'localhost', None,
serialization_behaviors.request_serializers,
serialization_behaviors.response_deserializers)