ignite-1089 Fixed tests for multi jvm mode. This closes #846. (cherry picked from commit bf57413)
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/a648e88c Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/a648e88c Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/a648e88c Branch: refs/heads/ignite-1232-1 Commit: a648e88c14295bf2c45b8e200eb5a3137997e131 Parents: d2198a1 Author: sboikov <[email protected]> Authored: Fri Jul 15 16:26:00 2016 +0300 Committer: sboikov <[email protected]> Committed: Fri Jul 15 16:26:00 2016 +0300 ---------------------------------------------------------------------- .../testframework/junits/multijvm/IgniteCacheProcessProxy.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/a648e88c/modules/core/src/test/java/org/apache/ignite/testframework/junits/multijvm/IgniteCacheProcessProxy.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/testframework/junits/multijvm/IgniteCacheProcessProxy.java b/modules/core/src/test/java/org/apache/ignite/testframework/junits/multijvm/IgniteCacheProcessProxy.java index adbf1ab..740b201 100644 --- a/modules/core/src/test/java/org/apache/ignite/testframework/junits/multijvm/IgniteCacheProcessProxy.java +++ b/modules/core/src/test/java/org/apache/ignite/testframework/junits/multijvm/IgniteCacheProcessProxy.java @@ -724,7 +724,6 @@ public class IgniteCacheProcessProxy<K, V> implements IgniteCache<K, V> { * */ private static class PartitionSizeLongTask extends CacheTaskAdapter<Void, Void, Long> { - /** Partition. */ int partition; @@ -742,7 +741,7 @@ public class IgniteCacheProcessProxy<K, V> implements IgniteCache<K, V> { * @param loc Local. */ public PartitionSizeLongTask(String cacheName, boolean async, CachePeekMode[] peekModes, int partition, boolean loc) { - super(cacheName, async); + super(cacheName, async, null); this.loc = loc; this.peekModes = peekModes; this.partition = partition;
