mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Set AJ return_false_on_aborted_enqueue
true in the test suite:
- Since this is going to be the default in 6.1, let's set it in the test suite to avoid deprecation warning. Otherwise one has to do `AS::Deprecation.silence { }` everytime we add a new test. Fix #38107
This commit is contained in:
parent
6cbd81c383
commit
be60970be7
1 changed files with 1 additions and 0 deletions
|
@ -13,6 +13,7 @@ if ENV["AJ_INTEGRATION_TESTS"]
|
|||
else
|
||||
ActiveJob::Base.logger = Logger.new(nil)
|
||||
ActiveJob::Base.skip_after_callbacks_if_terminated = true
|
||||
ActiveJob::Base.return_false_on_aborted_enqueue = true
|
||||
require "adapters/#{@adapter}"
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue