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 67f90fb commit e927f6dCopy full SHA for e927f6d
src/main/java/com/uber/cadence/internal/compatibility/thrift/ErrorMapper.java
@@ -86,7 +86,8 @@ public static TException Error(StatusRuntimeException ex) {
86
case "ServiceBusyError":
87
return new ServiceBusyError(ex.getMessage());
88
}
89
-
+ case UNKNOWN:
90
+ return new TException(ex);
91
default:
92
// If error does not match anything, return raw grpc status error
93
// There are some code that casts error to grpc status to check for deadline exceeded status
0 commit comments