We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 043e7ef commit a74bfafCopy full SHA for a74bfaf
java-client/src/test/java/co/elastic/clients/elasticsearch/spec_issues/SpecIssuesTest.java
@@ -296,6 +296,13 @@ public void i0056_hitsMetadataTotal() throws Exception {
296
.trackTotalHits(thb -> thb.enabled(false)), JsonData.class);
297
}
298
299
+ @Test
300
+ public void gettingVersionFromNodes() throws Exception {
301
+ ElasticsearchTestServer.global().client()
302
+ .nodes().info().nodes().entrySet().forEach(node ->
303
+ assertNotNull(node.getValue().version()));
304
+ }
305
+
306
private <T> T loadRsrc(String res, JsonpDeserializer<T> deser) {
307
InputStream is = this.getClass().getResourceAsStream(res);
308
assertNotNull(is, "Resource not found: " + res);
0 commit comments