grpc-go/stats
dfawley 0c1d39df28 Separate incoming and outgoing metadata in context
This will prevent the incoming RPCs' metadata from appearing in outgoing RPCs
unless it is explicitly copied, e.g.:

incomingMD, ok := metadata.FromContext(ctx)
if ok {
  ctx = metadata.NewContext(ctx, incomingMD)
}

Fixes #1148
2017-04-07 11:54:56 -07:00
..
grpc_testing remove wrong comments from stats testing proto 2016-11-08 15:36:01 -08:00
handlers.go Change stats APIs (#1030) 2017-01-09 17:11:32 -08:00
stats.go Add status package for reporting gRPC status and errors (#1156) 2017-04-05 10:35:40 -07:00
stats_test.go Separate incoming and outgoing metadata in context 2017-04-07 11:54:56 -07:00