Merge pull request #23511 from nextcloud/backport/23488/stable19

[stable19] SCSSCacher - Lock should not be removed
This commit is contained in:
Morris Jobke 2020-10-16 14:55:53 +02:00 committed by GitHub
commit 79a9feffdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -169,7 +169,6 @@ class SCSSCacher {
$this->logger->debug('SCSSCacher::process check in while loop follows', ['app' => 'scss_cacher']);
if (!$this->variablesChanged() && $this->isCached($fileNameCSS, $app)) {
// Inject icons vars css if any
$this->lockingCache->remove($lockKey);
$this->logger->debug("SCSSCacher::process cached file for app '$app' and file '$fileNameCSS' is now available after $retry s. Moving on...", ['app' => 'scss_cacher']);
return $this->injectCssVariablesIfAny();
}