mirror of https://github.com/grpc/grpc-go.git
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
|
||
|---|---|---|
| .. | ||
| grpc_testing | ||
| handlers.go | ||
| stats.go | ||
| stats_test.go | ||