Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-05-20 09:10:43 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-05-20 09:10:43 +0300
commit763dd8a47a4e353119f54de0919e10a4fa1de879 (patch)
tree20f4307a35accd0458165a516bf2af3ce1b2664e /lib/system_check/app
parent552cf9f9c4e086a57585e2fa312ae2bbb88d9ca4 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/system_check/app')
-rw-r--r--lib/system_check/app/redis_version_check.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/system_check/app/redis_version_check.rb b/lib/system_check/app/redis_version_check.rb
index e72d8b6b04d..d907c041ad8 100644
--- a/lib/system_check/app/redis_version_check.rb
+++ b/lib/system_check/app/redis_version_check.rb
@@ -5,9 +5,9 @@ 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'
+ # Redis 5.x will be deprecated
+ # https://gitlab.com/gitlab-org/gitlab/-/issues/331468
+ MIN_REDIS_VERSION = '5.0.0'
RECOMMENDED_REDIS_VERSION = '5.0.0'
set_name "Redis version >= #{RECOMMENDED_REDIS_VERSION}?"