summaryrefslogtreecommitdiff
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 15:44:09 -0800
commit60ce2ff3d01f22900d62b3d30ed89bc5e9d55167 (patch)
tree57986d5c28ff751aa7ef3a14a676e1e6da8fb7ca
parent7cd666ae928b003a8096289009bfd7290f8f6c73 (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
-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;
}