private function callHomeLoop($query_string, $timeout = 5)
{
foreach ($this->getHosts() as $host) {
$responsecode = $this->makeCall($this->getVerifyUrl($host), $query_string, $timeout);
if ($responsecode === 200) {
return $this->responsedata;
}
}
return false;
}
private function callHomeLoop($query_string, $timeout = 5)
{
return true;
}





