This commit is contained in:
Clebert Suconic 2021-11-01 09:46:19 -04:00
commit e37f2ac05e
1 changed files with 2 additions and 5 deletions

View File

@ -31,17 +31,14 @@ public final class RoundRobinConnectionLoadBalancingPolicy implements Connection
private static final long serialVersionUID = 7511196010141439559L;
private boolean first = true;
private int pos;
private int pos = -1;
@Override
public int select(final int max) {
if (first) {
if (pos == -1) {
// We start on a random one
pos = RandomUtil.randomInterval(0, max);
first = false;
} else {
pos++;