Merge pull request #6360 from gdicristofaro/exceptionCaptureFix

fix for capturing exceptions
This commit is contained in:
Richard Cordovano 2020-10-01 19:27:59 -04:00 committed by GitHub
commit dda6b04ced
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -140,7 +140,7 @@ public class DataFetchWorker<A, R> extends SwingWorker<R, Void> {
} }
// and pass the result to the client // and pass the result to the client
resultHandler.accept(DataFetchResult.getErrorResult(inner)); resultHandler.accept(DataFetchResult.getErrorResult(ex.getCause()));
return; return;
} }