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 795af0b commit ba3d0f1Copy full SHA for ba3d0f1
api/src/main/java/io/minio/S3Base.java
@@ -615,6 +615,14 @@ public void onFailure(final Call call, IOException e) {
615
616
@Override
617
public void onResponse(Call call, final Response response) throws IOException {
618
+ try {
619
+ onResponse(response);
620
+ } catch (Exception e) {
621
+ completableFuture.completeExceptionally(e);
622
+ }
623
624
+
625
+ private void onResponse(final Response response) throws IOException {
626
String trace =
627
response.protocol().toString().toUpperCase(Locale.US)
628
+ " "
0 commit comments