adapt to upstream changes
This commit is contained in:
parent
27d4994aff
commit
d2931b97e9
|
@ -48,7 +48,7 @@ public final class LivenessResponse extends ActionResponse {
|
||||||
public void readFrom(StreamInput in) throws IOException {
|
public void readFrom(StreamInput in) throws IOException {
|
||||||
super.readFrom(in);
|
super.readFrom(in);
|
||||||
clusterName = ClusterName.readClusterName(in);
|
clusterName = ClusterName.readClusterName(in);
|
||||||
in.readOptionalWritable(DiscoveryNode::new);
|
node = in.readOptionalWriteable(DiscoveryNode::new);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -51,7 +51,7 @@ public class ConnectTransportException extends ActionTransportException {
|
||||||
|
|
||||||
public ConnectTransportException(StreamInput in) throws IOException {
|
public ConnectTransportException(StreamInput in) throws IOException {
|
||||||
super(in);
|
super(in);
|
||||||
node = in.readOptionalWritable(DiscoveryNode::new);
|
node = in.readOptionalWriteable(DiscoveryNode::new);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue