diff options
author | Robin Appelman <robin@icewind.nl> | 2024-07-10 23:00:05 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2024-08-07 19:41:44 +0200 |
commit | cae0a8218da63fad6b6808b0051f4db1f196a79a (patch) | |
tree | 9c826e3a2ce09b7ffe7cc06df82a117715848c5e /lib | |
parent | b19652a2add61d652e0e8385c44de942eee611a1 (diff) | |
download | nextcloud-server-cae0a8218da63fad6b6808b0051f4db1f196a79a.tar.gz nextcloud-server-cae0a8218da63fad6b6808b0051f4db1f196a79a.zip |
chore: remove Redis::DEFAULT_TTL constant now that it's defined in the interface
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Memcache/Redis.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/private/Memcache/Redis.php b/lib/private/Memcache/Redis.php index cbafadc3b1b..87dc86ab10d 100644 --- a/lib/private/Memcache/Redis.php +++ b/lib/private/Memcache/Redis.php @@ -29,7 +29,6 @@ class Redis extends Cache implements IMemcacheTTL { ], ]; - private const DEFAULT_TTL = 24 * 60 * 60; // 1 day private const MAX_TTL = 30 * 24 * 60 * 60; // 1 month /** |