mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 18:36:35 +08:00
0d3d2c43a0
This commit also adds a rubocop rule to prevent global variables.
7 lines
163 B
Ruby
7 lines
163 B
Ruby
# frozen_string_literal: true
|
|
|
|
if Rails.env.development? && ENV['DISCOURSE_FLUSH_REDIS']
|
|
puts "Flushing redis (development mode)"
|
|
Discourse.redis.flushall
|
|
end
|