-
Notifications
You must be signed in to change notification settings - Fork 150
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
Implement HTTPI::Auth::SSL#ciphers configuration #214
Conversation
Hi Christian. Before we merge, could you please check the 2 errors Thanks, |
The Curb tests were also failing on master. I fixed this by changing the certs to those used in Puma tests. I don't know what exactly was wrong with the old certificates. The certs in Puma were recently upgraded in puma/puma#2333, but the PR just mentioned that the old certs were “outdated”. |
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.
@@ -1,7 +1,7 @@ | |||
require "spec_helper" | |||
require "integration/support/server" | |||
|
|||
describe HTTPI::Adapter::HTTPClient do | |||
describe HTTPI::Adapter::Excon do |
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.
Ah, good fix!
|
||
describe HTTPI::Adapter::NetHTTP do | ||
describe HTTPI::Adapter::NetHTTPPersistent do |
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.
❤️
@@ -122,6 +123,17 @@ | |||
response = HTTPI.get(request, adapter) | |||
expect(response.body).to eq("get") | |||
end | |||
|
|||
it "works with ciphers" do | |||
skip("Requires net-http-persistent 3.x") unless Net::HTTP::Persistent::VERSION.start_with? "3." |
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.
Good skip!
@c960657 Perhaps you can add a CHANGELOG.md line (under a new Update: Thanks! |
Alright, all green, and now merged. Whew! |
Thanks @c960657 and @olleolleolle |
Hi - thank you for adding this :-) I don't suppose a new |
This is an updated version of #180 by @faucct. That PR was never merged.