diff options
author | Robin Appelman <robin@icewind.nl> | 2023-12-05 16:01:46 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-07-02 12:11:45 +0000 |
commit | 2fa497e0ef617da0c4bb8357740ac2a2336058dd (patch) | |
tree | c6e2d421528738698d7ad4207e1d9c4efbc7908d | |
parent | 662abcf03e5cc55b3c44b597eb4a3b1045f7bfdb (diff) | |
download | nextcloud-server-backport/42548/stable22.tar.gz nextcloud-server-backport/42548/stable22.zip |
adjust redis compareSetTTL to use a lua scriptbackport/42548/stable22
Signed-off-by: Robin Appelman <robin@icewind.nl>
[skip ci]
-rw-r--r-- | tests/lib/Memcache/RedisTest.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/lib/Memcache/RedisTest.php b/tests/lib/Memcache/RedisTest.php index e7bb9c29d36..7cdc3c97be4 100644 --- a/tests/lib/Memcache/RedisTest.php +++ b/tests/lib/Memcache/RedisTest.php @@ -10,6 +10,11 @@ namespace Test\Memcache; class RedisTest extends Cache { + /** + * @var Redis cache; + */ + protected $instance; + public static function setUpBeforeClass(): void { parent::setUpBeforeClass(); |