Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion awscli_plugin_endpoint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def set_verify_from_profile(parsed_args, **kwargs):
# By default verify_ssl is set to true
# if --no-verify-ssl is specified, parsed_args.verify_ssl is False
# so keep it
if verify_ssl:
if verify_ssl or verify_ssl is None:
session = kwargs['session']
# Set profile to session so we can load profile from config
if parsed_args.profile:
Expand Down