Skip to content

Commit

Permalink
[BUGFIX] Use proper cache name for ContentFetcher
Browse files Browse the repository at this point in the history
The newly added ContentFetcher class uses the legacy cache name
"cache_runtime" which was renamed in TYPO3 v10.0 to "runtime".

The change modifies the cache to "runtime".

Resolves: #91188
Releases: master
Change-Id: I3d6f1b61f766120f13c5fee2fac78b50adfb35b0
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/64313
Reviewed-by: Oliver Klee <typo3-coding@oliverklee.de>
Reviewed-by: Guido Schmechel <guido.schmechel@brandung.de>
Reviewed-by: Susanne Moog <look@susi.dev>
Reviewed-by: Benni Mack <benni@typo3.org>
Tested-by: TYPO3com <noreply@typo3.com>
Tested-by: Susanne Moog <look@susi.dev>
Tested-by: Benni Mack <benni@typo3.org>
  • Loading branch information
bmack committed Apr 27, 2020
1 parent bc5a8f7 commit e4f4ca0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,6 @@ protected function getLanguageService(): LanguageService

protected function getRuntimeCache(): VariableFrontend
{
return GeneralUtility::makeInstance(CacheManager::class)->getCache('cache_runtime');
return GeneralUtility::makeInstance(CacheManager::class)->getCache('runtime');
}
}

0 comments on commit e4f4ca0

Please sign in to comment.