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 7cd666ae92
commit 60ce2ff3d0

View File

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