Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

test against version 7.4-rc1 issue #2738 #2739

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/StackExchange.Redis/RedisFeatures.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ namespace StackExchange.Redis
v6_2_0 = new Version(6, 2, 0),
v7_0_0_rc1 = new Version(6, 9, 240), // 7.0 RC1 is version 6.9.240
v7_2_0_rc1 = new Version(7, 1, 240), // 7.2 RC1 is version 7.1.240
v7_4_0_rc1 = new Version(7, 4, 240); // 7.4 RC1 is version 7.4.240
v7_4_0_rc1 = new Version(7, 3, 240); // 7.4 RC1 is version 7.3.240

private readonly Version version;

Expand Down
2 changes: 1 addition & 1 deletion tests/RedisConfigs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM redis:7.2-rc1
FROM redis:7.4-rc1

COPY Basic /data/Basic/
COPY Failover /data/Failover/
Expand Down
Loading