Skip to content

Commit

Permalink
Merge pull request #201 from datafuselabs/fix/useVerify-default-false
Browse files Browse the repository at this point in the history
fix: useVerify default as false
  • Loading branch information
hantmac authored Apr 23, 2024
2 parents bb0d8df + 26e4a01 commit c26a00f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.idea/
databend-jdbc/databend-jdbc-debug.log
target/
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public Ssl() {
private static class UseVerify
extends AbstractConnectionProperty<Boolean> {
public UseVerify() {
super("use_verify", Optional.of("true"), NOT_REQUIRED, ALLOWED, BOOLEAN_CONVERTER);
super("use_verify", Optional.of("false"), NOT_REQUIRED, ALLOWED, BOOLEAN_CONVERTER);
}
}

Expand Down

0 comments on commit c26a00f

Please sign in to comment.