Skip to content

Commit 962b11b

Browse files
authored
Mute tests failing on Debian 8 due to memory reporting (#66648)
See #66629 for details
1 parent 118c6a1 commit 962b11b

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

docs/reference/ml/anomaly-detection/apis/get-ml-info.asciidoc

Whitespace-only changes.

rest-api-spec/src/main/resources/rest-api-spec/test/cluster.stats/10_basic.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
---
22
"cluster stats test":
3+
- skip:
4+
version: "all"
5+
reason: "https://github.com/elastic/elasticsearch/issues/66629"
6+
37
- do:
48
cluster.stats: {}
59

@@ -33,8 +37,10 @@
3337
---
3438
"get cluster stats returns cluster_uuid at the top level":
3539
- skip:
36-
version: " - 6.4.99"
37-
reason: "cluster stats including cluster_uuid at the top level is new in v6.5.0 and higher"
40+
version: "all"
41+
reason: "https://github.com/elastic/elasticsearch/issues/66629"
42+
#version: " - 6.4.99"
43+
#reason: "cluster stats including cluster_uuid at the top level is new in v6.5.0 and higher"
3844

3945
- do:
4046
cluster.stats: {}

server/src/test/java/org/elasticsearch/monitor/os/OsProbeTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ List<String> readOsRelease() throws IOException {
8383
assertThat(info.getAvailableProcessors(), equalTo(Runtime.getRuntime().availableProcessors()));
8484
}
8585

86+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/66629")
8687
public void testOsStats() {
8788
final OsProbe osProbe = new OsProbe();
8889
OsStats stats = osProbe.osStats();

0 commit comments

Comments
 (0)