Merge pull request #6297 from gyuho/grpc-proxy

grpcproxy: fix recursive Context method
release-3.1
Gyu-Ho Lee 2016-08-29 13:31:44 -07:00 committed by GitHub
commit 452dedf8ab
1 changed files with 1 additions and 1 deletions

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 {