grpcproxy: fix recursive Context method

release-3.1
Gyu-Ho Lee 2016-08-29 11:37:35 -07:00
parent e53b99588a
commit 86bf2bc443
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 {