Hi, I’ve just noticed that in our load tests our list of users are not being picked at random.
I’m creating a csv feeder (25k users)
val userFeeder = csv(users.csv)
and then loading them with
feed(userFeeder.random.circular)
but each user picked was from the top of the list and works its way down in order.
I also tried
feed(userFeeder.batch.random.circular)
and
feed(userFeeder.batch(25000).random.circular)
each time the same behaviour.
Using version 3.3.1
Thanks