mirror of
https://github.com/nextcloud/server.git
synced 2026-03-19 17:13:56 -04:00
Merge pull request #40293 from nextcloud/bugfix/noid/only-use-memory-cache-backend-for-redis
fix(ratelimit): Only use memory cache backend for redis
This commit is contained in:
commit
165aeeb7f0
1 changed files with 2 additions and 2 deletions
|
|
@ -786,8 +786,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),
|
||||
|
|
|
|||
Loading…
Reference in a new issue