mirror of
https://github.com/funamitech/mastodon
synced 2024-11-24 07:06:34 +09:00
Calculate max_id without random vector (#17623)
This commit is contained in:
parent
b950807fd2
commit
3e12abc1fe
@ -54,7 +54,7 @@ module Mastodon
|
|||||||
|
|
||||||
ActiveRecord::Base.connection.add_index(:media_attachments, :remote_url, name: :index_media_attachments_remote_url, where: 'remote_url is not null', algorithm: :concurrently, if_not_exists: true)
|
ActiveRecord::Base.connection.add_index(:media_attachments, :remote_url, name: :index_media_attachments_remote_url, where: 'remote_url is not null', algorithm: :concurrently, if_not_exists: true)
|
||||||
|
|
||||||
max_id = Mastodon::Snowflake.id_at(options[:days].days.ago)
|
max_id = Mastodon::Snowflake.id_at(options[:days].days.ago, with_random: false)
|
||||||
start_at = Time.now.to_f
|
start_at = Time.now.to_f
|
||||||
|
|
||||||
unless options[:continue] && ActiveRecord::Base.connection.table_exists?('statuses_to_be_deleted')
|
unless options[:continue] && ActiveRecord::Base.connection.table_exists?('statuses_to_be_deleted')
|
||||||
|
Loading…
Reference in New Issue
Block a user