Skip to content

Commit

Permalink
Add increment as identified in grpc#10768
Browse files Browse the repository at this point in the history
  • Loading branch information
larry-safran committed Dec 18, 2023
1 parent 67b67f8 commit a73f6b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ public Endpoint(EquivalentAddressGroup eag) {
addrs = new String[eag.getAddresses().size()];
int i = 0;
for (SocketAddress address : eag.getAddresses()) {
addrs[i] = address.toString();
addrs[i++] = address.toString();
}
Arrays.sort(addrs);

Expand Down

0 comments on commit a73f6b8

Please sign in to comment.