Netflix / ocelli

Apache License 2.0
53 stars 28 forks source link

Why doesn't the RoundRobinLoadBalancer constructor use the seedPosition? #69

Closed futurely closed 9 years ago

futurely commented 9 years ago

https://github.com/Netflix/ocelli/blob/master/ocelli-core/src/main/java/netflix/ocelli/loadbalancer/RoundRobinLoadBalancer.java

    RoundRobinLoadBalancer(final Observable<List<C>> source, int seedPosition) {
        super(source);
        position = new AtomicInteger(-1);
    }