fix another methodFamily

This commit is contained in:
iamqizhao 2015-10-02 15:40:06 -07:00
parent b4aa9eae10
commit 4648452efa
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ func (t *http2Server) operateHeaders(hDec *hpackDecoder, s *Stream, frame header
}
s.method = hDec.state.method
if t.tracing {
s.tr = trace.New("grpc.Recv."+methodFamily(s.method), s.method)
s.tr = trace.New("grpc.Recv."+MethodFamily(s.method), s.method)
s.ctx = trace.NewContext(s.ctx, s.tr)
}
wg.Add(1)