in src/NodePool/SimpleNodePool.php [48:58]
public function setHosts(array $hosts): self
{
$this->nodes = [];
foreach ($hosts as $host) {
$this->nodes[] = new Node($host);
}
shuffle($this->nodes); // randomize for use different hosts on each execution
$this->selector->setNodes($this->nodes);
return $this;
}