mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
Fix migration 20200407202420_migrate_unavailable_inboxes (#13481)
This commit is contained in:
parent
3825e1943f
commit
ea200a178e
@ -4,8 +4,13 @@ class MigrateUnavailableInboxes < ActiveRecord::Migration[5.2]
|
|||||||
def up
|
def up
|
||||||
urls = Redis.current.smembers('unavailable_inboxes')
|
urls = Redis.current.smembers('unavailable_inboxes')
|
||||||
|
|
||||||
urls.each do |url|
|
hosts = urls.map do |url|
|
||||||
host = Addressable::URI.parse(url).normalized_host
|
Addressable::URI.parse(url).normalized_host
|
||||||
|
end.compact.uniq
|
||||||
|
|
||||||
|
UnavailableDomain.delete_all
|
||||||
|
|
||||||
|
hosts.each do |host|
|
||||||
UnavailableDomain.create(domain: host)
|
UnavailableDomain.create(domain: host)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user