From: Jeong Arm Date: Wed, 23 Feb 2022 15:44:59 +0000 (+0900) Subject: Calculate max_id without random vector (#17623) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=3e12abc1fe9b32f69eaf2a8d1edf8bad9622eb4a;p=mastodon.git Calculate max_id without random vector (#17623) --- diff --git a/lib/mastodon/statuses_cli.rb b/lib/mastodon/statuses_cli.rb index e273e2614..91b08813b 100644 --- a/lib/mastodon/statuses_cli.rb +++ b/lib/mastodon/statuses_cli.rb @@ -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) - 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 unless options[:continue] && ActiveRecord::Base.connection.table_exists?('statuses_to_be_deleted')