Skip to content

Commit

Permalink
Simplify acceptors.setSslEnabled in ClusteredOperatorSmokeTests.java
Browse files Browse the repository at this point in the history
  • Loading branch information
lenosi authored and jiridanek committed Nov 7, 2023
1 parent a5418c5 commit 1a9da33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ protected Acceptors createAcceptor(String name, String protocols, int port, bool
acceptors.setPort(port);
acceptors.setExpose(expose);
if (sslEnabled) {
acceptors.setSslEnabled(sslEnabled);
acceptors.setSslEnabled(true);
if (sslSecretName != null) {
acceptors.setSslSecret(sslSecretName);
}
Expand Down

0 comments on commit 1a9da33

Please sign in to comment.