Skip to content

fix: Kube API Test startup fails on readiness SSL check #6987

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* Fix #6930: Add support for Boolean enums in the java-generator
* Fix #6941: HasMetadata.getApiVersion no slash when empty group
* Fix #6829: Mixed-case enums are properly supported by the java-generator
* FIX #6987: Kube API Test startup fails on readiness SSL check

#### Improvements
* Fix #6863: ensuring SerialExecutor does not throw RejectedExecutionException to prevent unnecessary error logs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@

import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLEngine;
import javax.net.ssl.SSLException;
import javax.net.ssl.TrustManager;
import javax.net.ssl.X509ExtendedTrustManager;

Expand Down Expand Up @@ -123,7 +124,10 @@ private boolean ready(HttpClient client, HttpRequest request, String processName
response.statusCode(), processName,
port);
return response.statusCode() == 200;
} catch (ConnectException e) {
// It has been reported that in rare circumstances this call might
// result in a javax.net.ssl.SSLException: Unrecognized SSL message
// in that case we still want to retry, assuming this error goes away.
} catch (ConnectException | SSLException e) {
// still want to retry
log.debug("Cannot connect to the server", e);
return false;
Expand Down
Loading