Skip to content

Commit

Permalink
Bug fix for ssl_verify in old pdc_client
Browse files Browse the repository at this point in the history
The old pdc_client should set ssl_verify to None
to make configuration setting work.
This behavior is the same with new pdc.

JIRA: PDC-2092
  • Loading branch information
simozhan committed Aug 14, 2017
1 parent 93cfd26 commit f001eff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/pdc_client
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ if __name__ == "__main__":
elif options.ca_cert:
ssl_verify = options.ca_cert
else:
ssl_verify = True
ssl_verify = None
client = PDCClient(options.server, ssl_verify=ssl_verify)
if options.comment:
client.set_comment(options.comment)
Expand Down

0 comments on commit f001eff

Please sign in to comment.