Repository: ignite
Updated Branches:
  refs/heads/ignite-2.5 c1745de37 -> b28287d18


IGNITE-8025 Future must fail if assertion error has been thrown in the worker 
thread


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/b28287d1
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/b28287d1
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/b28287d1

Branch: refs/heads/ignite-2.5
Commit: b28287d1861fd841a18d0eef95eff309d21a55ef
Parents: c1745de
Author: Alexey Goncharuk <alexey.goncha...@gmail.com>
Authored: Tue Apr 10 16:22:28 2018 +0300
Committer: Alexey Goncharuk <alexey.goncha...@gmail.com>
Committed: Tue Apr 10 16:24:14 2018 +0300

----------------------------------------------------------------------
 .../test/java/org/apache/ignite/testframework/GridTestUtils.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/b28287d1/modules/core/src/test/java/org/apache/ignite/testframework/GridTestUtils.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/testframework/GridTestUtils.java 
b/modules/core/src/test/java/org/apache/ignite/testframework/GridTestUtils.java
index 4e9a7c2..e6c6657 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/testframework/GridTestUtils.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/testframework/GridTestUtils.java
@@ -814,7 +814,7 @@ public final class GridTestUtils {
             catch (IgniteFutureCancelledCheckedException e) {
                 resFut.onCancelled();
             }
-            catch (IgniteCheckedException e) {
+            catch (Throwable e) {
                 resFut.onDone(e);
             }
         });

Reply via email to