diff options
author | friendica <info@friendica.com> | 2014-10-21 16:34:14 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-10-21 16:34:14 -0700 |
commit | 35be89ad66033ca5254234ade900e524e210ce3a (patch) | |
tree | 732bd4bbbc8100e939b332c3f0277df2c4047458 /include | |
parent | ed7712cfbf9835368de79f8686954b536c12e4d1 (diff) | |
parent | 1fb2de6d55779c853e25d38f5b93133a5414d72a (diff) | |
download | volse-hubzilla-35be89ad66033ca5254234ade900e524e210ce3a.tar.gz volse-hubzilla-35be89ad66033ca5254234ade900e524e210ce3a.tar.bz2 volse-hubzilla-35be89ad66033ca5254234ade900e524e210ce3a.zip |
Merge https://github.com/friendica/red into pending_merge
Diffstat (limited to 'include')
-rw-r--r-- | include/poller.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/poller.php b/include/poller.php index d18cb1ca6..f11618d37 100644 --- a/include/poller.php +++ b/include/poller.php @@ -25,7 +25,7 @@ function poller_run($argv, $argc){ if(! $interval) $interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval'))); - // Check for a logfile. If it exists, but is over an hour old, it's stale. Ignore it. + // Check for a lockfile. If it exists, but is over an hour old, it's stale. Ignore it. $lockfile = 'store/[data]/poller'; if ((file_exists($lockfile)) && (filemtime($lockfile) > (time() - 3600))) { logger("poller: Already running"); |