From 6d13712d07be6e7077041a90ef31842831a730ff Mon Sep 17 00:00:00 2001 From: Mehrdad Afshari Date: Mon, 5 Feb 2018 15:06:26 -0800 Subject: Fix Python example unary/stream conflict --- examples/python/interceptors/headers/generic_client_interceptor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/python') diff --git a/examples/python/interceptors/headers/generic_client_interceptor.py b/examples/python/interceptors/headers/generic_client_interceptor.py index 30b0755aaf..d2bb7e568a 100644 --- a/examples/python/interceptors/headers/generic_client_interceptor.py +++ b/examples/python/interceptors/headers/generic_client_interceptor.py @@ -33,14 +33,14 @@ class _GenericClientInterceptor( request): new_details, new_request_iterator, postprocess = self._fn( client_call_details, iter((request,)), False, True) - response_it = continuation(new_details, new_request_iterator) + response_it = continuation(new_details, next(new_request_iterator)) return postprocess(response_it) if postprocess else response_it def intercept_stream_unary(self, continuation, client_call_details, request_iterator): new_details, new_request_iterator, postprocess = self._fn( client_call_details, request_iterator, True, False) - response = continuation(new_details, next(new_request_iterator)) + response = continuation(new_details, new_request_iterator) return postprocess(response) if postprocess else response def intercept_stream_stream(self, continuation, client_call_details, -- cgit v1.2.3