Merge pull request #40300 from nextcloud/backport/40293/stable27

[stable27] fix(ratelimit): Only use memory cache backend for redis
This commit is contained in:
Andy Scherzinger 2023-09-06 19:33:19 +02:00 committed by GitHub
commit dd52ddf4f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -846,8 +846,8 @@ class Server extends ServerContainer implements IServerContainer {
$this->registerDeprecatedAlias('Search', ISearch::class);
$this->registerService(\OC\Security\RateLimiting\Backend\IBackend::class, function ($c) {
$cacheFactory = $c->get(ICacheFactory::class);
if ($cacheFactory->isAvailable()) {
$config = $c->get(\OCP\IConfig::class);
if (ltrim($config->getSystemValueString('memcache.distributed', ''), '\\') === \OC\Memcache\Redis::class) {
$backend = new \OC\Security\RateLimiting\Backend\MemoryCacheBackend(
$c->get(AllConfig::class),
$this->get(ICacheFactory::class),