* Change the Celery timeout to 15 minutes (from 10) to better accommodate automatic ingest

* Fix various small bugs in auto ingestion and tab implementation
* Update TaskManager run conditions to piggyback on API calls - guarantees a certain frequency of requests and greatly reduces chances of lock contention
This commit is contained in:
Duncan Sommerville 2015-10-29 17:53:45 -04:00
parent c92eceb60d
commit e3feb17f0c
12 changed files with 34 additions and 17 deletions

View file

@ -48,13 +48,17 @@ class PageLayoutInitPlugin extends Zend_Controller_Plugin_Abstract
$this->_initGlobals();
$this->_initCsrfNamespace();
$this->_initTasks();
$this->_initHeadLink();
$this->_initHeadScript();
$this->_initTitle();
$this->_initTranslationGlobals();
$this->_initViewHelpers();
}
// Piggyback the TaskManager onto API calls
if ($controller == "api") {
$this->_initTasks();
}
}
/**