Skip to content

Commit

Permalink
Update to latest vertx option
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Nov 24, 2023
1 parent 0435b4e commit eb6bd59
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ public class KubeResolverOptions {
File caFile = new File(KUBERNETES_SERVICE_ACCOUNT_CA);
if (caFile.exists()) {
PemTrustOptions pemTrustOptions = new PemTrustOptions().addCertPath(KUBERNETES_SERVICE_ACCOUNT_CA);
httpClientOptions.setPemTrustOptions(pemTrustOptions);
webSocketClientOptions.setPemTrustOptions(pemTrustOptions);
httpClientOptions.setTrustOptions(pemTrustOptions);
webSocketClientOptions.setTrustOptions(pemTrustOptions);
}
DEFAULT_HOST = host;
DEFAULT_PORT = port;
Expand Down

0 comments on commit eb6bd59

Please sign in to comment.