Skip to content

Commit

Permalink
Issue #7808 was fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii0lomakin committed Oct 10, 2017
1 parent 49babb8 commit fcb8705
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ protected void afterExecute(Runnable r, Throwable t) {
try {
future.get();
} catch (CancellationException ce) {
t = ce;
//ignore it we cancel tasks on shutdown that is normal
} catch (ExecutionException ee) {
t = ee.getCause();
} catch (InterruptedException ie) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ protected void afterExecute(Runnable r, Throwable t) {
try {
future.get();
} catch (CancellationException ce) {
t = ce;
//ignore it we cancel tasks on shutdown that is normal
} catch (ExecutionException ee) {
t = ee.getCause();
} catch (InterruptedException ie) {
Expand Down

0 comments on commit fcb8705

Please sign in to comment.