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

merges upstream #4

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

merges upstream #4

wants to merge 3 commits into from

Conversation

felixhageloh
Copy link

It contains fixes we need to get docker working. Specifically jubos#114

felixhageloh and others added 3 commits October 5, 2015 21:22
- Avoid no method 'name' for nil error.
- The default spaceship operator also will return a nil instead of
  -1,0,1 if the objects provided are not comparable.
- coincidentally fixes a compatability issue seen with ruby 2.3.1
@@ -460,7 +462,7 @@ def normalize_request(webrick_req)
s_req.path = webrick_req.path
s_req.is_path_style = true

if !@root_hostnames.include?(host)
if !@root_hostnames.include?(host) && !(IPAddr.new(host) rescue nil)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, that's an alternative solution to fix this. Can we merge this one first without re-testing everything else?

Copy link
Author

@felixhageloh felixhageloh Oct 28, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is from upstream ... I thought you had the same fix

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

they've merged in the fix I propose and then refactored it to this solution it seems

@Kureev
Copy link

Kureev commented Nov 4, 2016

This PR works:
image

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