Use new StatusNetwork->serverName() to get full domain for wildcard config until we rebuild queues to be based on nicknames.

Fixes live bug with new *.status.net sites breaking queuedaemon.php
This commit is contained in:
Brion Vibber 2010-01-24 15:44:09 -08:00
parent 49d500e3e1
commit cb07fd29a3
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ abstract class IoMaster
$sn = new Status_network();
$sn->find();
while ($sn->fetch()) {
$hosts[] = $sn->hostname;
$hosts[] = $sn->getServerName();
}
return $hosts;
}