diff options
Diffstat (limited to 'scripts/xmppqueuehandler.php')
-rwxr-xr-x | scripts/xmppqueuehandler.php | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/scripts/xmppqueuehandler.php b/scripts/xmppqueuehandler.php index c6f5c3f12..7f1e6c28f 100755 --- a/scripts/xmppqueuehandler.php +++ b/scripts/xmppqueuehandler.php @@ -56,16 +56,9 @@ class XmppQueueHandler extends QueueHandler { return jabber_broadcast_notice($notice); } - function idle() { - $this->log(LOG_DEBUG, 'Checking the incoming message queue.'); + function idle($timeout=0) { # Process the queue for a second - if ($this->conn->readyToProcess()) { - $this->log(LOG_DEBUG, 'Something in the incoming message queue; processing it.'); - $this->conn->processTime(1); - $this->log(LOG_DEBUG, 'Done processing incoming message queue.'); - } else { - $this->log(LOG_DEBUG, 'Nothing in the incoming message queue; skipping it.'); - } + $this->conn->processTime($timeout); } function finish() { |