diff options
author | Robin Millette <millette@controlyourself.ca> | 2009-04-17 16:47:18 +0000 |
---|---|---|
committer | Robin Millette <millette@controlyourself.ca> | 2009-04-17 16:47:18 +0000 |
commit | 2eb1eb86838b47af7305dbd21a181e63bcd58418 (patch) | |
tree | 5b0970b274b9453f4f76225783f85792b36f049a /scripts/jabberqueuehandler.php | |
parent | 21873b806d6c5cf3e55ea10e49959c944f708688 (diff) | |
parent | 34d904b180e5caa17eb945292a8a64656424d5d0 (diff) |
Merge branch '0.7.x' of git@gitorious.org:laconica/dev into 0.7.x
Diffstat (limited to 'scripts/jabberqueuehandler.php')
-rwxr-xr-x | scripts/jabberqueuehandler.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/jabberqueuehandler.php b/scripts/jabberqueuehandler.php index 924fc4545..8b6e974c0 100755 --- a/scripts/jabberqueuehandler.php +++ b/scripts/jabberqueuehandler.php @@ -54,6 +54,13 @@ class JabberQueueHandler extends XmppQueueHandler } } +// Abort immediately if xmpp is not enabled, otherwise the daemon chews up +// lots of CPU trying to connect to unconfigured servers +if (common_config('xmpp','enabled')==false) { + print "Aborting daemon - xmpp is disabled\n"; + exit(); +} + ini_set("max_execution_time", "0"); ini_set("max_input_time", "0"); set_time_limit(0); @@ -63,4 +70,4 @@ $resource = ($argc > 1) ? $argv[1] : (common_config('xmpp','resource') . '-queue $handler = new JabberQueueHandler($resource); -$handler->runOnce();
\ No newline at end of file +$handler->runOnce(); |