Merge pull request #6297 from gyuho/grpc-proxy

grpcproxy: fix recursive Context method
This commit is contained in:
Gyu-Ho Lee
2016-08-29 13:31:44 -07:00
committed by GitHub

View File

@@ -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 {