diff options
author | David Yip <yipdw@member.fsf.org> | 2018-01-19 15:22:10 -0600 |
---|---|---|
committer | David Yip <yipdw@member.fsf.org> | 2018-01-19 15:22:10 -0600 |
commit | 2ca965c704075467226dbf798e13ac8e0e62cc15 (patch) | |
tree | c437e1f4993a6337759eb09157c78cd8134fd774 /lib/tasks | |
parent | 2b2de41bc7ecec15aa73650da153e50f0e16f16b (diff) | |
parent | 0b888acfd4ffddd29f25c878373e9b9f5ec6c0ab (diff) |
Merge remote-tracking branch 'origin/master' into merge-upstream
Conflicts: app/javascript/styles/mastodon/components.scss app/javascript/styles/mastodon/modal.scss
Diffstat (limited to 'lib/tasks')
-rw-r--r-- | lib/tasks/mastodon.rake | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/tasks/mastodon.rake b/lib/tasks/mastodon.rake index 38dbed982..486c035de 100644 --- a/lib/tasks/mastodon.rake +++ b/lib/tasks/mastodon.rake @@ -341,6 +341,15 @@ namespace :mastodon do LinkCrawlWorker.push_bulk status_ids end + desc 'Remove all home feed regeneration markers' + task remove_regeneration_markers: :environment do + keys = Redis.current.keys('account:*:regeneration') + + Redis.current.pipelined do + keys.each { |key| Redis.current.del(key) } + end + end + desc 'Check every known remote account and delete those that no longer exist in origin' task purge_removed_accounts: :environment do prepare_for_options! |