1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-10-30 23:27:41 +02:00
This commit is contained in:
asim
2025-10-22 07:18:37 +01:00
parent 5a07370970
commit 48479228b1

View File

@@ -92,7 +92,7 @@ func FromContext(ctx context.Context) (Metadata, bool) {
// capitalise all values
newMD := make(Metadata, len(md))
for k, v := range md {
newMD[strings.Title(k)] = v
newMD[k] = v
}
return newMD, ok