From 86bf2bc4435b26f740f15573f57e26bda7039695 Mon Sep 17 00:00:00 2001 From: Gyu-Ho Lee Date: Mon, 29 Aug 2016 11:37:35 -0700 Subject: [PATCH] grpcproxy: fix recursive Context method --- proxy/grpcproxy/watch_client_adapter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/grpcproxy/watch_client_adapter.go b/proxy/grpcproxy/watch_client_adapter.go index 4712bacec..bf21142ae 100644 --- a/proxy/grpcproxy/watch_client_adapter.go +++ b/proxy/grpcproxy/watch_client_adapter.go @@ -118,7 +118,7 @@ type chanStream struct { ctx context.Context } -func (s *chanStream) Context() context.Context { return s.Context() } +func (s *chanStream) Context() context.Context { return s.ctx } func (s *chanStream) SendMsg(m interface{}) error { select {