Fix compilation from FsInfo#<init> change in core

This commit fixes some test compilation issues due to upstream changes
in core that added I/O statistics on Linux.

Original commit: elastic/x-pack-elasticsearch@a0877aa0aa
This commit is contained in:
Jason Tedor 2016-05-17 20:51:54 -04:00
parent a4f4cd5203
commit 5bf3b7054c
2 changed files with 2 additions and 2 deletions

View File

@ -128,7 +128,7 @@ public class ClusterStatsResolverTests extends MonitoringIndexNameResolverTestCa
statsByShard.put(index, Collections.singletonList(new IndexShardStats(new ShardId(index, 0), randomShardStats())));
return new NodeStats(new DiscoveryNode("node_0", DummyTransportAddress.INSTANCE, emptyMap(), emptySet(), Version.CURRENT), 0,
new NodeIndicesStats(new CommonStats(), statsByShard), null, null, null, null,
new FsInfo(0, pathInfo), null, null, null, null, null, null);
new FsInfo(0, null, pathInfo), null, null, null, null, null, null);
}
/**

View File

@ -137,6 +137,6 @@ public class NodeStatsResolverTests extends MonitoringIndexNameResolverTestCase<
new NodeIndicesStats(new CommonStats(), statsByShard), OsProbe.getInstance().osStats(),
ProcessProbe.getInstance().processStats(), JvmStats.jvmStats(),
new ThreadPoolStats(threadPoolStats),
new FsInfo(0, pathInfo), null, null, null, null, null, null);
new FsInfo(0, null, pathInfo), null, null, null, null, null, null);
}
}