summaryrefslogtreecommitdiff
path: root/lib/system_check/app/redis_version_check.rb
diff options
context:
space:
mode:
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, 3 insertions, 1 deletions
diff --git a/lib/system_check/app/redis_version_check.rb b/lib/system_check/app/redis_version_check.rb
index a205861b9a9..e72d8b6b04d 100644
--- a/lib/system_check/app/redis_version_check.rb
+++ b/lib/system_check/app/redis_version_check.rb
@@ -5,8 +5,10 @@ require 'redis'
module SystemCheck
module App
class RedisVersionCheck < SystemCheck::BaseCheck
+ # Redis 4.x will be deprecated
+ # https://gitlab.com/gitlab-org/gitlab/-/issues/327197
MIN_REDIS_VERSION = '4.0.0'
- RECOMMENDED_REDIS_VERSION = '4.0.0' # In future we may deprecate but still support Redis 4
+ RECOMMENDED_REDIS_VERSION = '5.0.0'
set_name "Redis version >= #{RECOMMENDED_REDIS_VERSION}?"
@custom_error_message = ''