When I do something like await rpc.connect_rpc(connect='tcp://rpc-service:5555'), where "rpc-service" is a round robin A record with multiple addresses, can I expect the client to choose a different address every time it is initialized?
From experimentation it seems that this is not the case, but I might be doing something wrong.
When I do something like
await rpc.connect_rpc(connect='tcp://rpc-service:5555')
, where "rpc-service" is a round robin A record with multiple addresses, can I expect the client to choose a different address every time it is initialized?From experimentation it seems that this is not the case, but I might be doing something wrong.