We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb34677 commit 2346df2Copy full SHA for 2346df2
opamp-client/src/main/java/io/opentelemetry/opamp/client/internal/request/service/HttpRequestService.java
@@ -161,12 +161,14 @@ private void doSendRequest() {
161
}
162
} catch (IOException | InterruptedException | TimeoutException e) {
163
getCallback().onConnectionFailed(e);
164
+ connectionStatus.retryAfter(null);
165
} catch (ExecutionException e) {
166
if (e.getCause() != null) {
167
getCallback().onConnectionFailed(e.getCause());
168
} else {
169
170
171
172
173
174
0 commit comments