-
Notifications
You must be signed in to change notification settings - Fork 1
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
base: master
Are you sure you want to change the base?
Conversation
As described here http://docs.aws.amazon.com/AmazonS3/latest/API/mpUploadListParts.html Cleaned up related code a bit as well.
- 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) |
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.
Ok, that's an alternative solution to fix this. Can we merge this one first without re-testing everything else?
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.
this is from upstream ... I thought you had the same fix
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.
they've merged in the fix I propose and then refactored it to this solution it seems
It contains fixes we need to get docker working. Specifically jubos#114