1
0
mirror of https://github.com/gusaul/grpcox.git synced 2024-09-29 04:10:39 +00:00

stop reflect headers from affecting request headers

This commit is contained in:
AlessandroLimTkp 2023-06-13 17:46:15 +07:00
parent f240d0494e
commit b998f098b8
2 changed files with 2 additions and 1 deletions

View File

@ -83,6 +83,7 @@ func (g *GrpCox) GetResource(ctx context.Context, target string, plainText, isRe
return nil, err
}
// what is r.Headers used for?
r.headers = h
g.activeConn.addConnection(target, r, g.maxLifeConn)

View File

@ -210,7 +210,7 @@ func (r *Resource) Invoke(ctx context.Context, metadata []string, symbol string,
}
h := grpcurl.NewDefaultEventHandler(&resultBuffer, r.descSource, formatter, false)
var headers = r.headers
var headers []string
if len(metadata) != 0 {
headers = metadata
}