Skip to content

Commit

Permalink
[fix][fn] JavaInstanceStarter --tls_allow_insecure default to false (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljmarshall authored Jun 6, 2023
1 parent f4386c8 commit 0a39b81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public class JavaInstanceStarter implements AutoCloseable {
public String useTls = Boolean.FALSE.toString();

@Parameter(names = "--tls_allow_insecure", description = "Allow insecure tls connection\n")
public String tlsAllowInsecureConnection = Boolean.TRUE.toString();
public String tlsAllowInsecureConnection = Boolean.FALSE.toString();

@Parameter(names = "--hostname_verification_enabled", description = "Enable hostname verification")
public String tlsHostNameVerificationEnabled = Boolean.FALSE.toString();
Expand Down

0 comments on commit 0a39b81

Please sign in to comment.