1
0
Fork 1
forked from fedi/mastodon

Apply Rubocop Performance/BindCall (#23437)

This commit is contained in:
Nick Schonning 2023-02-07 19:10:25 -05:00 committed by talon
parent 74cee7e8f1
commit 1d9ca990e0
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