Merge pull request #21495 from nextcloud/backport/21483/stable19
[stable19] Give up after 10 seconds in SCSS timeout
This commit is contained in:
commit
c62000c0bb
|
@ -171,7 +171,7 @@ class SCSSCacher {
|
||||||
return $this->injectCssVariablesIfAny();
|
return $this->injectCssVariablesIfAny();
|
||||||
}
|
}
|
||||||
$this->logger->debug('SCSSCacher: scss cache file locked for '.$lockKey, ['app' => 'core']);
|
$this->logger->debug('SCSSCacher: scss cache file locked for '.$lockKey, ['app' => 'core']);
|
||||||
sleep($retry);
|
sleep(1);
|
||||||
$retry++;
|
$retry++;
|
||||||
}
|
}
|
||||||
$this->logger->debug('SCSSCacher: Giving up scss caching for '.$lockKey, ['app' => 'core']);
|
$this->logger->debug('SCSSCacher: Giving up scss caching for '.$lockKey, ['app' => 'core']);
|
||||||
|
|
Loading…
Reference in New Issue