mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 00:47:46 -06:00
16 lines
409 B
Ruby
16 lines
409 B
Ruby
# frozen_string_literal: true
|
|
|
|
if Rails.env.development? && ENV["DISCOURSE_FLUSH_REDIS"]
|
|
puts "Flushing redis (development mode)"
|
|
Discourse.redis.flushdb
|
|
end
|
|
|
|
begin
|
|
if Gem::Version.new(Discourse.redis.info["redis_version"]) < Gem::Version.new("6.2.0")
|
|
STDERR.puts "Discourse requires Redis 6.2.0 or up"
|
|
exit 1
|
|
end
|
|
rescue Redis::CannotConnectError
|
|
STDERR.puts "Couldn't connect to Redis"
|
|
end
|