Skip to content

Commit

Permalink
Fixes https connections to keystone when no CA certificates
Browse files Browse the repository at this point in the history
are specified.

Fixes bug 1064835

Change-Id: I77987f01cc1395a4857ebdcb0bb6adf697866dd7
  • Loading branch information
sorrison committed Oct 19, 2012
1 parent a6102fe commit d81160e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keystoneclient/shell.py
Expand Up @@ -131,7 +131,7 @@ def get_base_parser(self):

parser.add_argument('--os-cacert',
metavar='<ca-certificate>',
default=env('OS_CA_CERT'),
default=env('OS_CA_CERT', default=None),
help='Defaults to env[OS_CACERT]')
parser.add_argument('--os_cacert',
help=argparse.SUPPRESS)
Expand Down

0 comments on commit d81160e

Please sign in to comment.