Skip to content

Commit 7cee02e

Browse files
committed
Fix ClassCastException in extractAndWrapCause when handling ExecutionException
Signed-off-by: Yechan Lim <[email protected]>
1 parent eab4091 commit 7cee02e

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ This section is for maintaining a changelog for all breaking changes for the cli
5252
### Removed
5353

5454
### Fixed
55-
55+
- Fixed ClassCastException in extractAndWrapCause when handling ExecutionException ([#1483](https://github.com/opensearch-project/opensearch-java/pull/1483))
5656
### Security
5757

5858
## [2.22.0] - 03/05/2025

java-client/src/main/java/org/opensearch/client/transport/aws/AwsSdk2Transport.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,11 @@ private static Exception extractAndWrapCause(Exception exception) {
694694
if (t instanceof Error) {
695695
throw (Error) t;
696696
}
697-
exception = (Exception) t;
697+
if (t instanceof Exception) {
698+
exception = (Exception) t;
699+
} else {
700+
exception = new RuntimeException("Unexpected throwable caught in execution", t);
701+
}
698702
}
699703
if (exception instanceof SocketTimeoutException) {
700704
SocketTimeoutException e = new SocketTimeoutException(exception.getMessage());

java-client/src/main/java/org/opensearch/client/transport/httpclient5/ApacheHttpClient5Transport.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -1107,7 +1107,11 @@ private static Exception extractAndWrapCause(Exception exception) {
11071107
if (t instanceof Error) {
11081108
throw (Error) t;
11091109
}
1110-
exception = (Exception) t;
1110+
if (t instanceof Exception) {
1111+
exception = (Exception) t;
1112+
} else {
1113+
exception = new RuntimeException("Unexpected throwable caught in execution", t);
1114+
}
11111115
}
11121116
if (exception instanceof ConnectTimeoutException) {
11131117
ConnectTimeoutException e = new ConnectTimeoutException(exception.getMessage());

0 commit comments

Comments
 (0)