remove FullClusterRestartIT.testMonitoring
Per @pickypg : The value of it is to prove that we can continue calling the same API between versions, which every test we run does already and does regardless of version. relates elastic/x-pack-elasticsearch#3068 Original commit: elastic/x-pack-elasticsearch@ceb42d7f47
This commit is contained in:
parent
d1b0067e47
commit
3d6f4d3c1c
|
@ -172,23 +172,6 @@ public class FullClusterRestartIT extends ESRestTestCase {
|
|||
}
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@AwaitsFix(bugUrl = "https://github.com/elastic/x-pack-elasticsearch/issues/3068")
|
||||
public void testMonitoring() throws Exception {
|
||||
waitForYellow(".monitoring-es-*");
|
||||
|
||||
if (runningAgainstOldCluster == false) {
|
||||
waitForMonitoringTemplates();
|
||||
}
|
||||
|
||||
// ensure that monitoring [re]starts and creates the core monitoring document, cluster_stats, for the current cluster
|
||||
final Map<String, Object> response = toMap(client().performRequest("GET", "/"));
|
||||
final Map<String, Object> version = (Map<String, Object>) response.get("version");
|
||||
final String expectedVersion = (String) version.get("number");
|
||||
|
||||
waitForClusterStats(expectedVersion);
|
||||
}
|
||||
|
||||
public void testWatcher() throws Exception {
|
||||
if (runningAgainstOldCluster) {
|
||||
logger.info("Adding a watch on old cluster {}", oldClusterVersion);
|
||||
|
|
Loading…
Reference in New Issue