mirror of
https://github.com/mastodon/mastodon.git
synced 2025-05-29 04:57:12 +00:00
19 lines
725 B
Ruby
19 lines
725 B
Ruby
# frozen_string_literal: true
|
|
|
|
if ENV['REDIS_NAMESPACE']
|
|
es_configured = ENV['ES_ENABLED'] == 'true' || ENV.fetch('ES_HOST', 'localhost') != 'localhost' || ENV.fetch('ES_PORT', '9200') != '9200' || ENV.fetch('ES_PASS', 'password') != 'password'
|
|
|
|
message = <<~MESSAGE
|
|
ERROR: the REDIS_NAMESPACE environment variable is no longer supported, and a migration is required.
|
|
|
|
Please see documentation at https://github.com/mastodon/redis_namespace_migration
|
|
MESSAGE
|
|
|
|
message += <<~MESSAGE if es_configured && !ENV['ES_PREFIX']
|
|
|
|
In addition, as REDIS_NAMESPACE is being used as a prefix for Elasticsearch, please do not forget to set ES_PREFIX to "#{ENV.fetch('REDIS_NAMESPACE')}".
|
|
MESSAGE
|
|
|
|
abort message
|
|
end
|