summaryrefslogtreecommitdiff
path: root/lib/iomaster.php
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-01-24 15:44:09 -0800
committerBrion Vibber <brion@pobox.com>2010-01-24 16:01:19 -0800
commitcb07fd29a31d681dff838e95f3a96033332020f0 (patch)
tree53e28c505e8ba5324e9724ed57eb200893be6538 /lib/iomaster.php
parent49d500e3e18a1520ca9e34d76d2e421b57afcb07 (diff)
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
Diffstat (limited to 'lib/iomaster.php')
-rw-r--r--lib/iomaster.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/iomaster.php b/lib/iomaster.php
index 004e92b3e..3bf82bc6b 100644
--- a/lib/iomaster.php
+++ b/lib/iomaster.php
@@ -88,7 +88,7 @@ abstract class IoMaster
$sn = new Status_network();
$sn->find();
while ($sn->fetch()) {
- $hosts[] = $sn->hostname;
+ $hosts[] = $sn->getServerName();
}
return $hosts;
}