You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Fixed the loading of Delayed::Job constant on newly-generated Rails 6.1 apps. (previously, the
constant would not be available until ActiveRecord::Base was referenced for the first time)
The Delayed::Railtie is now a Delayed::Engine, allowing it to autoload constants via Rails'
built-in autoloader. In a non-Rails context, require 'delayed' will eager-load its models.