Fix/del server interceptor duplicate copy md 20220827 (#2309)

* fix:grpc server interceptor duplicate copy MD

* modify wrong comments
This commit is contained in:
maizige 2022-08-27 18:55:40 +08:00 committed by GitHub
parent 05007c86bb
commit 5d4ae201d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 6 deletions

View File

@ -38,7 +38,7 @@ func (s *metadataSupplier) Keys() []string {
return out
}
// Inject injects the metadata into ctx.
// Inject injects cross-cutting concerns from the ctx into the metadata.
func Inject(ctx context.Context, p propagation.TextMapPropagator, metadata *metadata.MD) {
p.Inject(ctx, &metadataSupplier{
metadata: metadata,

View File

@ -93,11 +93,8 @@ func (w *serverStream) SendMsg(m interface{}) error {
}
func startSpan(ctx context.Context, method string) (context.Context, trace.Span) {
var md metadata.MD
requestMetadata, ok := metadata.FromIncomingContext(ctx)
if ok {
md = requestMetadata.Copy()
} else {
md, ok := metadata.FromIncomingContext(ctx)
if !ok {
md = metadata.MD{}
}
bags, spanCtx := ztrace.Extract(ctx, otel.GetTextMapPropagator(), &md)