1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-05 23:05:36 +00:00
mastodon/lib/chewy/strategy/bypass_with_warning.rb

13 lines
265 B
Ruby

# frozen_string_literal: true
module Chewy
class Strategy
class BypassWithWarning < Base
def update(...)
Rails.logger.warn 'Chewy update without a root strategy' unless @warning_issued
@warning_issued = true
end
end
end
end