This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2020-04-15 11:33:24 -07:00
|
|
|
class MigrateUnavailableInboxes < ActiveRecord::Migration[5.2]
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def up
|
|
|
|
urls = Redis.current.smembers('unavailable_inboxes')
|
|
|
|
|
2020-04-15 23:03:24 -07:00
|
|
|
hosts = urls.map do |url|
|
|
|
|
Addressable::URI.parse(url).normalized_host
|
|
|
|
end.compact.uniq
|
|
|
|
|
|
|
|
UnavailableDomain.delete_all
|
|
|
|
|
|
|
|
hosts.each do |host|
|
2020-04-15 11:33:24 -07:00
|
|
|
UnavailableDomain.create(domain: host)
|
|
|
|
end
|
|
|
|
|
|
|
|
Redis.current.del(*(['unavailable_inboxes'] + Redis.current.keys('exhausted_deliveries:*')))
|
|
|
|
end
|
|
|
|
|
|
|
|
def down; end
|
|
|
|
end
|