We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c01689 commit 28d8f21Copy full SHA for 28d8f21
1 file changed
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