diff options
author | redmatrix <git@macgirvin.com> | 2016-05-19 21:22:04 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-19 21:22:04 -0700 |
commit | 39bc0664a773a97ccce276161739f217e3ba7449 (patch) | |
tree | 726fff23174f4972337ad8aae6b8ff6544264a8b /include | |
parent | 853322e7d2734ad459a4e5740f3f1806ed55532e (diff) | |
download | volse-hubzilla-39bc0664a773a97ccce276161739f217e3ba7449.tar.gz volse-hubzilla-39bc0664a773a97ccce276161739f217e3ba7449.tar.bz2 volse-hubzilla-39bc0664a773a97ccce276161739f217e3ba7449.zip |
Separate cron into periodic components and use that as the main interface for scheduled tasks instead of the quaint 'poller'.
Diffstat (limited to 'include')
-rw-r--r-- | include/poller.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/poller.php b/include/poller.php index 0946d0ece..67a67de12 100644 --- a/include/poller.php +++ b/include/poller.php @@ -5,8 +5,7 @@ require_once('include/cli_startup.php'); function poller_run($argc,$argv){ cli_startup(); - - \Zotlabs\Daemon\Master::Summon('Poller'); + \Zotlabs\Daemon\Master::Summon('Cron'); } |