diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-09-04 14:40:31 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-09-04 14:40:31 -0400 |
commit | aed0fff4ea668de83405a4457fe238cf36c78d8f (patch) | |
tree | 21c3c184e49c4599bbd7e96f18225d831a56cd66 /scripts/smsqueuehandler.php | |
parent | 95d9920d7861fb4a070a2ac2ebe19deb7432c5ab (diff) |
scripts daemonize themselves
darcs-hash:20080904184031-84dde-eba2061f3aa898d0c791ffeb70837f759778c567.gz
Diffstat (limited to 'scripts/smsqueuehandler.php')
-rwxr-xr-x | scripts/smsqueuehandler.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/scripts/smsqueuehandler.php b/scripts/smsqueuehandler.php index 9968a7861..8f0d02d9b 100755 --- a/scripts/smsqueuehandler.php +++ b/scripts/smsqueuehandler.php @@ -61,8 +61,4 @@ $id = ($argc > 1) ? $argv[1] : NULL; $handler = new SmsQueueHandler($id); -if ($handler->start()) { - $handler->handle_queue(); -} - -$handler->finish(); +$handler->runOnce(); |