Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix passing custom CA cert via DDF params
The verify_credentials method is looking for "ca_certs" in the default_endpoint hash but the key is "certificate_authority". This means even if the user passes in a valid CA cert the verify call will fail because ca_certs will be `nil` ``` server, port, verify_ssl, ca_certs = default_endpoint&.values_at( "hostname", "port", "verify_ssl", "ca_certs" ) (byebug) ca_certs nil (byebug) default_endpoint.keys ["hostname", "verify_ssl", "certificate_authority", "port"] ```
- Loading branch information