Skip to content

Commit 57da4de

Browse files
committed
fix failing nodes test because is removed as per elastic/elasticsearch#19218
1 parent 0a32f3d commit 57da4de

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/Nest/Cluster/NodesInfo/NodeInfo.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ public class NodeInfo
2525
[JsonProperty(PropertyName = "build_hash")]
2626
public string BuildHash { get; internal set; }
2727

28-
[JsonProperty(PropertyName = "http_address")]
29-
public string HttpAddress { get; internal set; }
30-
3128
/// <summary>
3229
/// All of the different roles that the node fulfills. An empty
3330
/// collection means that the node is a coordinating only node.

src/Tests/Cluster/NodesInfo/NodesInfoApiTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ protected void Assert(NodeInfo node)
5050
node.Ip.Should().NotBeNullOrWhiteSpace();
5151
node.Version.Should().NotBeNullOrWhiteSpace();
5252
node.BuildHash.Should().NotBeNullOrWhiteSpace();
53-
node.HttpAddress.Should().NotBeNullOrWhiteSpace();
5453
node.Roles.Should().NotBeNullOrEmpty();
5554
}
5655

0 commit comments

Comments
 (0)