Commit cd2bf412 authored by Stan Hu's avatar Stan Hu

Merge branch '327197-rake-gitlab-check-redis-5' into 'master'

Set minimum Redis version to 5.0

See merge request gitlab-org/gitlab!62156
parents 4507c9cb 2cfe54c0
......@@ -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}?"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment