Commit 2cfe54c0 authored by Takuya Noguchi's avatar Takuya Noguchi

Set minimum Redis version to 5.0

Changelog: changed
Signed-off-by: default avatarTakuya Noguchi <takninnovationresearch@gmail.com>
parent 35644c23
......@@ -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