-
Notifications
You must be signed in to change notification settings - Fork 49
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
This gem doesn't work on Ruby 3.1 due to a breaking change of YAML#load
#34
Comments
gem looks abandoned |
@krisleech this is also preventing us from upgrading to ruby 3. Could you please merge it in or let us know if we need to create a |
@krisleech Do we have a schedule or at least a timeline for this? Don't want to rush, but Ruby 3 is kinda awesome and we want to use in our app too |
@moiristo and @patrickemuller I would be happy to assist with |
Forked to https://github.com/bookingexperts/wisper-sidekiq and applied Sean's patch there for now. |
I opened a pull request with an alternative solution that uses |
Ruby 3.1 comes with Psych 4.0 bundled, which changes
YAML#load
to behave likeYAML#safe_load
(instead ofYAML#unsafe_load
). See ruby/psych#487 for more details.This results in
Psych::DisallowedClass: Tried to load unspecified class:
for all registered async subscriber classes.The text was updated successfully, but these errors were encountered: