From def65a5c6b02ed378875f5d5000c4e43f01985b6 Mon Sep 17 00:00:00 2001 From: Marc Gravell Date: Mon, 15 Jun 2026 10:22:02 +0100 Subject: [PATCH 1/2] Update StackExchange.Redis version to 3.0.0 --- Directory.Packages.props | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 79557bb9..797a2d8e 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -12,7 +12,7 @@ - + @@ -28,4 +28,4 @@ - \ No newline at end of file + From 6ef036aa0c671e9894aa099bc7b3cc9992f70584 Mon Sep 17 00:00:00 2001 From: Marc Gravell Date: Mon, 15 Jun 2026 13:01:33 +0100 Subject: [PATCH 2/2] Update EndpointsFixture.cs --- tests/NRedisStack.Tests/EndpointsFixture.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/NRedisStack.Tests/EndpointsFixture.cs b/tests/NRedisStack.Tests/EndpointsFixture.cs index e3a27dac..3bec7b57 100644 --- a/tests/NRedisStack.Tests/EndpointsFixture.cs +++ b/tests/NRedisStack.Tests/EndpointsFixture.cs @@ -128,6 +128,7 @@ public ConnectionMultiplexer GetConnectionById(ConfigurationOptions configuratio { var options = configurationOptions.Clone(); // isolate before we start applying the protocol options.Protocol = protocol.IsResp3() ? RedisProtocol.Resp3 : RedisProtocol.Resp2; + options.AllowAdmin = true; // from 3.0, Execute[Async] does a better job of recognizing admin commands options.HighIntegrity = protocol.IsHighIntegrity(); options.ConnectTimeout = 2000; if (shareConnection) options.AbortOnConnectFail = false; @@ -170,4 +171,4 @@ public bool IsTargetConnectionExist(string id) { return redisEndpoints.ContainsKey(id); } -} \ No newline at end of file +}