Calculate max_id without random vector (#17623)
This commit is contained in:
parent
b950807fd2
commit
3e12abc1fe
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue