Skip to content

Commit 5b632ff

Browse files
opensearch-trigger-bot[bot]github-actions[bot]Dan Cecoi
authored
Removed null constraints on NodeInfo fields that are returned null from Amazon OpenSearch Service (#1132) (#1136)
* Removed the null constraints on NodeInfo.host, NodeInfo.Ip, NodeInfo.TransportAddress * Added a CHANGELOG entry, made the getters nullable and removed extra white space * modified the PR link in the changelog --------- (cherry picked from commit 94171f8) Signed-off-by: Dan Cecoi <[email protected]> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Dan Cecoi <[email protected]>
1 parent b6984e3 commit 5b632ff

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
1313
### Removed
1414

1515
### Fixed
16+
- Fixed handling of NodeInfo fields that are not returned by Amazon OpenSearch Service ([#1132](https://github.com/opensearch-project/opensearch-java/pull/1132))
1617

1718
### Security
1819

java-client/src/main/java/org/opensearch/client/opensearch/nodes/info/NodeInfo.java

+15-6
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,13 @@ public class NodeInfo implements PlainJsonSerializable {
6060

6161
private final String buildType;
6262

63+
@Nullable
6364
private final String host;
6465

6566
@Nullable
6667
private final NodeInfoHttp http;
6768

69+
@Nullable
6870
private final String ip;
6971

7072
@Nullable
@@ -99,6 +101,7 @@ public class NodeInfo implements PlainJsonSerializable {
99101
@Nullable
100102
private final NodeInfoTransport transport;
101103

104+
@Nullable
102105
private final String transportAddress;
103106

104107
private final String version;
@@ -117,9 +120,9 @@ private NodeInfo(Builder builder) {
117120
this.attributes = ApiTypeHelper.unmodifiable(builder.attributes);
118121
this.buildHash = ApiTypeHelper.requireNonNull(builder.buildHash, this, "buildHash");
119122
this.buildType = ApiTypeHelper.requireNonNull(builder.buildType, this, "buildType");
120-
this.host = ApiTypeHelper.requireNonNull(builder.host, this, "host");
123+
this.host = builder.host;
121124
this.http = builder.http;
122-
this.ip = ApiTypeHelper.requireNonNull(builder.ip, this, "ip");
125+
this.ip = builder.ip;
123126
this.jvm = builder.jvm;
124127
this.name = ApiTypeHelper.requireNonNull(builder.name, this, "name");
125128
this.network = builder.network;
@@ -132,7 +135,7 @@ private NodeInfo(Builder builder) {
132135
this.totalIndexingBuffer = builder.totalIndexingBuffer;
133136
this.totalIndexingBufferInBytes = builder.totalIndexingBufferInBytes;
134137
this.transport = builder.transport;
135-
this.transportAddress = ApiTypeHelper.requireNonNull(builder.transportAddress, this, "transportAddress");
138+
this.transportAddress = builder.transportAddress;
136139
this.version = ApiTypeHelper.requireNonNull(builder.version, this, "version");
137140
this.modules = ApiTypeHelper.unmodifiable(builder.modules);
138141
this.ingest = builder.ingest;
@@ -173,6 +176,7 @@ public final String buildType() {
173176
* <p>
174177
* API name: {@code host}
175178
*/
179+
@Nullable
176180
public final String host() {
177181
return this.host;
178182
}
@@ -190,6 +194,7 @@ public final NodeInfoHttp http() {
190194
* <p>
191195
* API name: {@code ip}
192196
*/
197+
@Nullable
193198
public final String ip() {
194199
return this.ip;
195200
}
@@ -299,6 +304,7 @@ public final NodeInfoTransport transport() {
299304
* <p>
300305
* API name: {@code transport_address}
301306
*/
307+
@Nullable
302308
public final String transportAddress() {
303309
return this.transportAddress;
304310
}
@@ -496,11 +502,13 @@ public static class Builder extends ObjectBuilderBase implements ObjectBuilder<N
496502

497503
private String buildType;
498504

505+
@Nullable
499506
private String host;
500507

501508
@Nullable
502509
private NodeInfoHttp http;
503510

511+
@Nullable
504512
private String ip;
505513

506514
@Nullable
@@ -537,6 +545,7 @@ public static class Builder extends ObjectBuilderBase implements ObjectBuilder<N
537545
@Nullable
538546
private NodeInfoTransport transport;
539547

548+
@Nullable
540549
private String transportAddress;
541550

542551
private String version;
@@ -593,7 +602,7 @@ public final Builder buildType(String value) {
593602
* <p>
594603
* API name: {@code host}
595604
*/
596-
public final Builder host(String value) {
605+
public final Builder host(@Nullable String value) {
597606
this.host = value;
598607
return this;
599608
}
@@ -618,7 +627,7 @@ public final Builder http(Function<NodeInfoHttp.Builder, ObjectBuilder<NodeInfoH
618627
* <p>
619628
* API name: {@code ip}
620629
*/
621-
public final Builder ip(String value) {
630+
public final Builder ip(@Nullable String value) {
622631
this.ip = value;
623632
return this;
624633
}
@@ -828,7 +837,7 @@ public final Builder transport(Function<NodeInfoTransport.Builder, ObjectBuilder
828837
* <p>
829838
* API name: {@code transport_address}
830839
*/
831-
public final Builder transportAddress(String value) {
840+
public final Builder transportAddress(@Nullable String value) {
832841
this.transportAddress = value;
833842
return this;
834843
}

0 commit comments

Comments
 (0)