Work around sidekiq inline/fake setting issue

This commit is contained in:
Matt Jankowski 2024-02-02 15:58:11 -05:00
parent d8d5a9b530
commit bb84c1c71b
1 changed files with 3 additions and 1 deletions

View File

@ -26,7 +26,9 @@ WebMock.disable_net_connect!(
allow_localhost: true,
allow: Chewy.settings[:host]
)
Sidekiq.logger = nil
Sidekiq.configure_server do |config|
config.logger = nil
end
DatabaseCleaner.strategy = [:deletion]