We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f469281 commit 06ba5c3Copy full SHA for 06ba5c3
src/Tests/Tests/XPack/MachineLearning/GetDatafeedStats/GetDatafeedStatsApiTests.cs
@@ -42,7 +42,11 @@ protected override void ExpectResponse(GetDatafeedStatsResponse response)
42
response.Count.Should().BeGreaterOrEqualTo(1);
43
var datafeedStats = response.Datafeeds.First();
44
datafeedStats.State.Should().Be(DatafeedState.Stopped);
45
- datafeedStats.TimingStats.Should().NotBeNull();
+
46
+ if (Cluster.ClusterConfiguration.Version >= "7.4.0")
47
+ {
48
+ datafeedStats.TimingStats.Should().NotBeNull();
49
+ }
50
}
51
52
0 commit comments