Commit 1761c297 authored by Stan Hu's avatar Stan Hu

Merge branch '327197-deprecate-redis-4-on-rake-gitlab-check' into 'master'

Bump recommended Redis version from 4.0 to 5.0

See merge request gitlab-org/gitlab!59072
parents 7ecb3ed5 d8a66160
---
title: Bump recommended Redis version from 4.0 to 5.0
merge_request: 59072
author: Takuya Noguchi
type: deprecated
......@@ -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 = ''
......
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