Skip to content

Commit

Permalink
ignite-1089 Fixed tests for multi jvm mode. This closes apache#846.
Browse files Browse the repository at this point in the history
(cherry picked from commit bf57413)
  • Loading branch information
sboikov committed Jul 15, 2016
1 parent d2198a1 commit a648e88
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,6 @@ public SizeLongTask(String cacheName, boolean async, CachePeekMode[] peekModes,
*
*/
private static class PartitionSizeLongTask extends CacheTaskAdapter<Void, Void, Long> {

/** Partition. */
int partition;

Expand All @@ -742,7 +741,7 @@ private static class PartitionSizeLongTask extends CacheTaskAdapter<Void, Void,
* @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;
Expand Down

0 comments on commit a648e88

Please sign in to comment.