fix compile erors due to upstream changes in node stats
Original commit: elastic/x-pack-elasticsearch@a0a600cb68
This commit is contained in:
parent
a033f95072
commit
fbe0aefa0c
|
@ -129,7 +129,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, Version.CURRENT), 0,
|
||||
new NodeIndicesStats(new CommonStats(), statsByShard), null, null, null, null,
|
||||
new FsInfo(0, pathInfo), null, null, null, null, null);
|
||||
new FsInfo(0, pathInfo), null, null, null, null, null, null);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -136,6 +136,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);
|
||||
new FsInfo(0, pathInfo), null, null, null, null, null, null);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue