changes to minimize allocations and provide useful info

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2019-07-17 00:19:59 +03:00
parent 8c7e35c3c6
commit a3bddf5839
2 changed files with 6 additions and 5 deletions

View File

@@ -280,16 +280,16 @@ func (r *rpcClient) next(request Request, opts CallOptions) (selector.Next, erro
// return remote address
if len(opts.Address) > 0 {
var nodes []*registry.Node
nodes := make([]*registry.Node, len(opts.Address))
for _, address := range opts.Address {
nodes = append(nodes, &registry.Node{
for i, address := range opts.Address {
nodes[i] = &registry.Node{
Address: address,
// Set the protocol
Metadata: map[string]string{
"protocol": "mucp",
},
})
}
}
// crude return method