Fix metadata context

This commit is contained in:
世界 2024-10-27 07:45:15 +08:00
parent 327bb35ddd
commit 1a6047a61b
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
10 changed files with 15 additions and 29 deletions

View file

@ -91,15 +91,6 @@ func ContextFrom(ctx context.Context) *InboundContext {
return metadata.(*InboundContext)
}
func AppendContext(ctx context.Context) (context.Context, *InboundContext) {
metadata := ContextFrom(ctx)
if metadata != nil {
return ctx, metadata
}
metadata = new(InboundContext)
return WithContext(ctx, metadata), metadata
}
func ExtendContext(ctx context.Context) (context.Context, *InboundContext) {
var newMetadata InboundContext
if metadata := ContextFrom(ctx); metadata != nil {