Skip to content
This repository has been archived by the owner on Jan 15, 2022. It is now read-only.

Commit

Permalink
fix: set default value of noverify as True
Browse files Browse the repository at this point in the history
  • Loading branch information
devrimyatar committed May 4, 2021
1 parent 662e987 commit 256cf48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config-cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def join(self):

parser.add_argument("--cert-file", help="Path to SSL Certificate file")
parser.add_argument("--key-file", help="Path to SSL Key file")
parser.add_argument("-noverify", help="Ignore verifying the SSL certificate", action='store_true')
parser.add_argument("-noverify", help="Ignore verifying the SSL certificate", action='store_true', default=True)

#parser.add_argument("-show-data-type", help="Show data type in schema query", action='store_true')
parser.add_argument("--data", help="Path to json data file")
Expand Down

0 comments on commit 256cf48

Please sign in to comment.