Fixed to sync the timeline only if the backend is available.
This commit is contained in:
parent
7d84da4d7c
commit
6ef721d3a8
@ -343,10 +343,12 @@ class IDF_Scm
|
|||||||
$key = 'IDF_Scm:'.$project->shortname.':lastsync';
|
$key = 'IDF_Scm:'.$project->shortname.':lastsync';
|
||||||
if (null === ($res=$cache->get($key))) {
|
if (null === ($res=$cache->get($key))) {
|
||||||
$scm = IDF_Scm::get($project);
|
$scm = IDF_Scm::get($project);
|
||||||
foreach ($scm->getChangeLog($scm->getMainBranch(), 25) as $change) {
|
if ($scm->isAvailable()) {
|
||||||
IDF_Commit::getOrAdd($change, $project);
|
foreach ($scm->getChangeLog($scm->getMainBranch(), 25) as $change) {
|
||||||
|
IDF_Commit::getOrAdd($change, $project);
|
||||||
|
}
|
||||||
|
$cache->set($key, true, (int)(Pluf::f('cache_timeout', 300)/2));
|
||||||
}
|
}
|
||||||
$cache->set($key, true, (int)(Pluf::f('cache_timeout', 300)/2));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user