forked from rails/rails
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix NoMethodError in dev.rb when skip-active-job
config.active_jobs.verbose_enqueue_logs was [added][1] to the development.rb template, but it was put inside the skip-active-record block. This means that it will be included in generated development.rb even when Active Job is skipped. This commit fixes this issue by moving it outside of the skip-active-record check and into its own skip-active-job check. [1]: f6d56fe
- Loading branch information
1 parent
ccb6462
commit 9a297fb
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters