Skip to content

Commit

Permalink
Eager load ActiveJob::ConfiguredJob and Serializers
Browse files Browse the repository at this point in the history
Otherwise they are autoloaded when the first job is enqueued
which isn't good for production performance.
  • Loading branch information
byroot committed Mar 1, 2022
1 parent 53fd8bd commit 3f6c1d0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions activejob/lib/active_job.rb
Expand Up @@ -33,8 +33,12 @@ module ActiveJob

autoload :Base
autoload :QueueAdapters
autoload :Serializers
autoload :ConfiguredJob

eager_autoload do
autoload :Serializers
autoload :ConfiguredJob
end

autoload :TestCase
autoload :TestHelper
autoload :QueryTags
Expand Down

0 comments on commit 3f6c1d0

Please sign in to comment.