-
Notifications
You must be signed in to change notification settings - Fork 12
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
System spec failures after upgrading to 1.0.1 #19
Comments
What version of Puma and Rack are you using? |
(Can't upgrade to Rack 3, sorry) |
It looks like a problem with Puma: https://github.com/puma/puma/blob/v6.4.3/lib/rack/handler/puma.rb#L117-L141
is probably incorrect. There should be two separate files, cc @MSP-Greg |
Thanks, should I report this to Puma? In the meanwhile, here it is a reproducible test case: diowa/ruby3-rails7-bootstrap-heroku#995 |
Yes, I think we should report this to Puma. Here is how I do it in Falcon: https://github.com/socketry/falcon/blob/main/lib/rackup/handler/falcon.rb It should be easy to adapt. |
Thanks, I'll do that Apologies for this Small OT: I've noticed that neither Would you accept PRs including this metadata? Ref: |
Yes, I would accept that PR, thanks for being so gracious about asking. (I see no reason why we couldn't also add that to |
There should be one PRs per repo with (optional?) backports to different branches for each supported version, thanks. I'll do that |
Seems like a breaking change in 1.0.1. I believe we can fix it in Puma by changing if Object.const_defined? :Rackup to if Object.const_defined?(:Rackup) && ::Rackup.const_defined?(:Handler) |
As there is nothing to be done here to fix the issue, I will close it. Thanks for your report! |
Hello, after this upgrade CI started failing with:
I've tried to clone and bisect, but I'm not familiar with this repo, I don't understand how it is supposed to work in local
This is the only change in the code:
The text was updated successfully, but these errors were encountered: