Apply Rubocop Performance/BindCall (#23437)

This commit is contained in:
Nick Schonning 2023-02-07 19:10:25 -05:00 committed by GitHub
parent cec005068f
commit c92e033cdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ module ActiveRecord
ActiveRecord::Base.establish_connection(db_config)
Mastodon::Snowflake.define_timestamp_id
original_load_schema.bind(self).call(db_config, *args)
original_load_schema.bind_call(self, db_config, *args)
Mastodon::Snowflake.ensure_id_sequences_exist
end

View File

@ -2,7 +2,7 @@ module Rails
module EngineExtensions
# Rewrite task loading code to filter digitalocean.rake task
def run_tasks_blocks(app)
Railtie.instance_method(:run_tasks_blocks).bind(self).call(app)
Railtie.instance_method(:run_tasks_blocks).bind_call(self, app)
paths["lib/tasks"].existent.reject { |ext| ext.end_with?('digitalocean.rake') }.sort.each { |ext| load(ext) }
end
end