We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The changes to provide a generic retry approach (#4825 #4788) in combination with OperationSupport.waitForResult and the default retry values:
OperationSupport.waitForResult
kubernetes-client/kubernetes-client/src/main/java/io/fabric8/kubernetes/client/dsl/internal/OperationSupport.java
Lines 502 to 532 in ee38b09
lead to TimeoutException that hides the underlying issue that's causing the overhead with the retry and backoff intervals.
TimeoutException
We should try to find a way to report the last/latest status code/message (if any) and report it when the timeout happens.
The text was updated successfully, but these errors were encountered:
fix fabric8io#5095: moving the enforcement to requestTimeout
314c62e
53ed288
fix #5095: moving the enforcement to requestTimeout
f1185a0
shawkins
Successfully merging a pull request may close this issue.
Description
The changes to provide a generic retry approach (#4825 #4788) in combination with
OperationSupport.waitForResult
and the default retry values:kubernetes-client/kubernetes-client/src/main/java/io/fabric8/kubernetes/client/dsl/internal/OperationSupport.java
Lines 502 to 532 in ee38b09
lead to
TimeoutException
that hides the underlying issue that's causing the overhead with the retry and backoff intervals.We should try to find a way to report the last/latest status code/message (if any) and report it when the timeout happens.
The text was updated successfully, but these errors were encountered: