mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #21483 from nextcloud/fix/scss/timeout
Give up after 10 seconds in SCSS timeout
This commit is contained in:
commit
59093abfaf
1 changed files with 1 additions and 1 deletions
|
|
@ -171,7 +171,7 @@ class SCSSCacher {
|
|||
return $this->injectCssVariablesIfAny();
|
||||
}
|
||||
$this->logger->debug('SCSSCacher: scss cache file locked for '.$lockKey, ['app' => 'core']);
|
||||
sleep($retry);
|
||||
sleep(1);
|
||||
$retry++;
|
||||
}
|
||||
$this->logger->debug('SCSSCacher: Giving up scss caching for '.$lockKey, ['app' => 'core']);
|
||||
|
|
|
|||
Loading…
Reference in a new issue