17 lines
261 B
Go
17 lines
261 B
Go
|
package public
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"google.golang.org/grpc/metadata"
|
||
|
)
|
||
|
|
||
|
func ForwardMetadataContext(ctx context.Context) context.Context {
|
||
|
md, ok := metadata.FromIncomingContext(ctx)
|
||
|
if !ok {
|
||
|
return ctx
|
||
|
}
|
||
|
|
||
|
return metadata.NewOutgoingContext(ctx, md)
|
||
|
}
|