mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix: adjust memcache config quote escape
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
parent
aaca29bdad
commit
38f190336f
1 changed files with 2 additions and 2 deletions
|
|
@ -1654,7 +1654,7 @@ $CONFIG = [
|
|||
*
|
||||
* Defaults to ``none``
|
||||
*/
|
||||
'memcache.local' => '\OC\Memcache\APCu',
|
||||
'memcache.local' => '\\OC\\Memcache\\APCu',
|
||||
|
||||
/**
|
||||
* Memory caching backend for distributed data
|
||||
|
|
@ -1664,7 +1664,7 @@ $CONFIG = [
|
|||
*
|
||||
* Defaults to ``none``
|
||||
*/
|
||||
'memcache.distributed' => '\OC\Memcache\Memcached',
|
||||
'memcache.distributed' => '\\OC\\Memcache\\Memcached',
|
||||
|
||||
/**
|
||||
* Connection details for Redis to use for memory caching in a single server configuration.
|
||||
|
|
|
|||
Loading…
Reference in a new issue