You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by dp...@apache.org on 2018/04/16 16:13:42 UTC

ignite git commit: IGNITE-8246 Fix for cast exception when using printPartitionState method - Fixes #3816.

Repository: ignite
Updated Branches:
  refs/heads/master 9557f6dcb -> 228254ae3


IGNITE-8246 Fix for cast exception when using printPartitionState method - Fixes #3816.

Signed-off-by: dpavlov <dp...@apache.org>


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

Branch: refs/heads/master
Commit: 228254ae317a6a1eb8897ad78a5f55967407be58
Parents: 9557f6d
Author: Maxim Muzafarov <ma...@gmail.com>
Authored: Mon Apr 16 19:13:28 2018 +0300
Committer: dpavlov <dp...@apache.org>
Committed: Mon Apr 16 19:13:28 2018 +0300

----------------------------------------------------------------------
 .../ignite/testframework/junits/common/GridCommonAbstractTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/228254ae/modules/core/src/test/java/org/apache/ignite/testframework/junits/common/GridCommonAbstractTest.java
----------------------------------------------------------------------
diff --git a/modules/core/src/test/java/org/apache/ignite/testframework/junits/common/GridCommonAbstractTest.java b/modules/core/src/test/java/org/apache/ignite/testframework/junits/common/GridCommonAbstractTest.java
index 71abb95..9f2f8c4 100755
--- a/modules/core/src/test/java/org/apache/ignite/testframework/junits/common/GridCommonAbstractTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/testframework/junits/common/GridCommonAbstractTest.java
@@ -866,7 +866,7 @@ public abstract class GridCommonAbstractTest extends GridAbstractTest {
                     .append(" res=").append(f.isDone() ? f.get() : "N/A")
                     .append(" topVer=")
                     .append((U.hasField(f, "topVer") ?
-                        String.valueOf(U.field(f, "topVer")) : "[unknown] may be it is finished future"))
+                        String.valueOf(U.<Object>field(f, "topVer")) : "[unknown] may be it is finished future"))
                     .append("\n");
 
                 Map<UUID, T2<Long, Collection<Integer>>> remaining = U.field(f, "remaining");