Skip to content
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

Merged
merged 1 commit into from
Oct 30, 2024

Conversation

dixpac
Copy link
Contributor

@dixpac dixpac commented Oct 30, 2024

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.

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.
@michaelklishin michaelklishin added this to the 3.1.1 milestone Oct 30, 2024
@michaelklishin
Copy link
Member

I think this can and should go into 3.1.x. @simi WDYT?

@michaelklishin michaelklishin merged commit aeafaba into ruby-amqp:main Oct 30, 2024
4 checks passed
module ActiveJob
module QueueAdapters
# Explicitly remove the implementation existing in older Rails versions'.
remove_const(:SneakersAdapter) if defined?("::#{name}::SneakersAdapter")
Copy link
Contributor Author

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")

Copy link
Member

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.

@michaelklishin
Copy link
Member

@dixpac thank you. If we agree that it can go into 3.1.1, I'll be happy to cut a new release off of main some time this week.

@simi
Copy link
Contributor

simi commented Oct 30, 2024

@michaelklishin I can cut new release today if welcomed.

@michaelklishin
Copy link
Member

@simi no objections from me. Just remember to update the change log before tagging.

michaelklishin pushed a commit that referenced this pull request Nov 1, 2024
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)
michaelklishin added a commit that referenced this pull request Nov 1, 2024
@michaelklishin
Copy link
Member

michaelklishin commented Nov 1, 2024

Shipped in 3.1.1.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants