Temporarily disable the task manager to test lock contention

This commit is contained in:
Albert Santoni 2015-08-11 16:34:28 -04:00
parent dab0f00736
commit 60a02cfdee

View file

@ -134,8 +134,9 @@ class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
if (getenv("AIRTIME_UNIT_TEST") != 1) {
$taskManager = TaskManager::getInstance();
$taskManager->runTask(AirtimeTask::UPGRADE); // Run the upgrade on each request (if it needs to be run)
//XXX: Testing if this is causing lock contention
//This will do the upgrade too if it's needed...
$taskManager->runTasks();
//$taskManager->runTasks();
}
}