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 {
|
||||
super.readFrom(in);
|
||||
clusterName = ClusterName.readClusterName(in);
|
||||
in.readOptionalWritable(DiscoveryNode::new);
|
||||
node = in.readOptionalWriteable(DiscoveryNode::new);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -51,7 +51,7 @@ public class ConnectTransportException extends ActionTransportException {
|
|||
|
||||
public ConnectTransportException(StreamInput in) throws IOException {
|
||||
super(in);
|
||||
node = in.readOptionalWritable(DiscoveryNode::new);
|
||||
node = in.readOptionalWriteable(DiscoveryNode::new);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue