Skip to content

Commit 19bd9fe

Browse files
authored
[aws-sdk-core] Fix typo in method's name in Seahorse::Client::H2::Connection (#3221)
1 parent 409ed44 commit 19bd9fe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
uses: thollander/actions-comment-pull-request@main
2020
with:
2121
message: 'You have made a change to core without a corresponding change to the CHANGELOG.md. This change will not result in a new version and will not published unless an entry is added to CHANGELOG.md.'
22-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
github-token: ${{ secrets.GITHUB_TOKEN }}

gems/aws-sdk-core/lib/seahorse/client/h2/connection.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def _tls_context
216216
if @ssl_verify_peer
217217
ssl_ctx.verify_mode = OpenSSL::SSL::VERIFY_PEER
218218
ssl_ctx.ca_file = @ssl_ca_bundle || _default_ca_bundle
219-
ssl_ctx.ca_path = @ssl_ca_directory || _defalt_ca_directory
219+
ssl_ctx.ca_path = @ssl_ca_directory || _default_ca_directory
220220
ssl_ctx.cert_store = @ssl_ca_store if @ssl_ca_store
221221
else
222222
ssl_ctx.verify_mode = OpenSSL::SSL::VERIFY_NONE
@@ -232,7 +232,7 @@ def _default_ca_bundle
232232
OpenSSL::X509::DEFAULT_CERT_FILE if File.exist?(OpenSSL::X509::DEFAULT_CERT_FILE)
233233
end
234234

235-
def _defalt_ca_directory
235+
def _default_ca_directory
236236
OpenSSL::X509::DEFAULT_CERT_DIR if Dir.exist?(OpenSSL::X509::DEFAULT_CERT_DIR)
237237
end
238238
end

0 commit comments

Comments
 (0)