mirror of
https://github.com/discourse/discourse.git
synced 2026-08-15 17:24:47 +08:00
This reverts commit20780a1eee. * SECURITY: re-adds accidentally reverted commit:03d26cd6: ensure embed_url contains valid http(s) uri * when the merge commite62a85cfwas reverted, git chose the2660c2e2parent to land on instead of the03d26cd6parent (which contains security fixes)
21 lines
614 B
Ruby
Vendored
21 lines
614 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
if Rails.env.development? && ENV['DISCOURSE_FLUSH_REDIS']
|
|
puts "Flushing redis (development mode)"
|
|
Discourse.redis.flushdb
|
|
end
|
|
|
|
if ENV['RAILS_FAILOVER']
|
|
message_bus_keepalive_interval = MessageBus.keepalive_interval
|
|
|
|
RailsFailover::Redis.register_master_up_callback do
|
|
MessageBus.keepalive_interval = message_bus_keepalive_interval
|
|
Discourse.clear_readonly!
|
|
Discourse.request_refresh!
|
|
end
|
|
|
|
RailsFailover::Redis.register_master_down_callback do
|
|
# Disables MessageBus keepalive when Redis is in readonly mode
|
|
MessageBus.keepalive_interval = 0
|
|
end
|
|
end
|