Fix read address

This commit is contained in:
世界
2025-09-05 15:16:14 +08:00
parent cbf48e9b8c
commit f352f84483
7 changed files with 12 additions and 12 deletions

View File

@@ -78,8 +78,8 @@ func (w *myUpstreamHandlerWrapper) NewError(ctx context.Context, err error) {
// Deprecated: removed
func UpstreamMetadata(metadata InboundContext) M.Metadata {
return M.Metadata{
Source: metadata.Source,
Destination: metadata.Destination,
Source: metadata.Source.Unwrap(),
Destination: metadata.Destination.Unwrap(),
}
}