diff options
author | friendica <info@friendica.com> | 2012-11-29 19:52:10 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-11-29 19:52:10 -0800 |
commit | dd428cf4fc1ec043eea99e8d909cc21c5e214d26 (patch) | |
tree | a1f953b07a739ca72a112214ab530a617a59952b /include/poller.php | |
parent | 061a279ed3e40856c85baf54a27ef89bb860b056 (diff) | |
download | volse-hubzilla-dd428cf4fc1ec043eea99e8d909cc21c5e214d26.tar.gz volse-hubzilla-dd428cf4fc1ec043eea99e8d909cc21c5e214d26.tar.bz2 volse-hubzilla-dd428cf4fc1ec043eea99e8d909cc21c5e214d26.zip |
rm pidfile stuff since we won't need poller locking
Diffstat (limited to 'include/poller.php')
-rw-r--r-- | include/poller.php | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/poller.php b/include/poller.php index 5fc438c8d..5e5d211e4 100644 --- a/include/poller.php +++ b/include/poller.php @@ -24,7 +24,6 @@ function poller_run($argv, $argc){ require_once('include/items.php'); require_once('include/Contact.php'); require_once('include/socgraph.php'); - require_once('include/pidfile.php'); load_config('config'); load_config('system'); @@ -40,16 +39,6 @@ function poller_run($argv, $argc){ } } - $lockpath = get_config('system','lockpath'); - if ($lockpath != '') { - $pidfile = new pidfile($lockpath, 'poller.lck'); - if($pidfile->is_already_running()) { - logger("poller: Already running"); - exit; - } - } - - $a->set_baseurl(get_config('system','url')); |