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 41511f4 commit 2a39b63Copy full SHA for 2a39b63
http-client/src/main/java/io/a2a/client/http/JdkA2AHttpClient.java
@@ -185,11 +185,6 @@ public void onComplete() {
185
return httpClient.sendAsync(request, bodyHandler)
186
.thenAccept(response -> {
187
// Status checking is now handled in the body handler
188
- })
189
- .exceptionally(throwable -> {
190
- // handle any other async errors (network issues, etc.)
191
- subscriber.onError(new IOException("Request failed: " + throwable.getMessage(), throwable));
192
- return null;
193
});
194
}
195
0 commit comments