summaryrefslogtreecommitdiff
path: root/lib/system_check/app/redis_version_check.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-04-28 12:24:19 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2023-04-28 12:24:19 +0000
commit72cb3bee798655c2d370dfedf3c04665aaa43aa3 (patch)
tree4f57c272abd6067ed3dfdf38bca9220b3ea13bf5 /lib/system_check/app/redis_version_check.rb
parent70c1d0352e39c3c04caaa3082c3ffb4ad5c29b32 (diff)
downloadgitlab-ce-72cb3bee798655c2d370dfedf3c04665aaa43aa3.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/system_check/app/redis_version_check.rb')
-rw-r--r--lib/system_check/app/redis_version_check.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/system_check/app/redis_version_check.rb b/lib/system_check/app/redis_version_check.rb
index a6ff2405390..d43c7f4a497 100644
--- a/lib/system_check/app/redis_version_check.rb
+++ b/lib/system_check/app/redis_version_check.rb
@@ -5,9 +5,7 @@ require 'redis'
module SystemCheck
module App
class RedisVersionCheck < SystemCheck::BaseCheck
- # Redis 5.x will be deprecated
- # https://gitlab.com/gitlab-org/gitlab/-/issues/331468
- MIN_REDIS_VERSION = '5.0.0'
+ MIN_REDIS_VERSION = '6.0.0'
RECOMMENDED_REDIS_VERSION = "6.0.0"
set_name "Redis version >= #{RECOMMENDED_REDIS_VERSION}?"