-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Load ActiveJob adapter
only for rails >= 7.2
#19
Conversation
Rails introduced `ActiveJob::QueueAdapters::AbstratAdapter` in 7.2 version. So this PR conditionally loads "in-house" adapter only if `activejob` version is >= 7.2. If version is less than 7.2 adapter implemented inside the rails will be used.
I think this can and should go into |
module ActiveJob | ||
module QueueAdapters | ||
# Explicitly remove the implementation existing in older Rails versions'. | ||
remove_const(:SneakersAdapter) if defined?("::#{name}::SneakersAdapter") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Slight change here also:
When Ruby parses the expression
defined?(:ANY_SYMBOL)
it recognizes the symbol :ANY_SYMBOL and adds it to its list of known symbols. It will always be truthy.
What we really want is
module ActiveJob
module QueueAdapters
remove_const(:SneakersAdapter) if defined?("::#{name}::SneakersAdapter")
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comment communicates the general idea. You are welcome to add a more detailed comment if you see the need.
@dixpac thank you. If we agree that it can go into |
@michaelklishin I can cut new release today if welcomed. |
@simi no objections from me. Just remember to update the change log before tagging. |
Rails introduced `ActiveJob::QueueAdapters::AbstratAdapter` in 7.2 version. So this PR conditionally loads "in-house" adapter only if `activejob` version is >= 7.2. If version is less than 7.2 adapter implemented inside the rails will be used. (cherry picked from commit aeafaba)
Shipped in |
Rails introduced
ActiveJob::QueueAdapters::AbstratAdapter
in 7.2 version.So this PR conditionally loads "in-house" adapter only if
activejob
version is >= 7.2. If version is less than 7.2 adapter implemented inside the rails will be used.