HDDS-145. Freon times out because of because of wrong ratis port number in datanode details. Contributed by Mukul Kumar Singh.
This commit is contained in:
parent
61fc7f73f2
commit
ea7b53fb44
@ -49,12 +49,12 @@ public interface RatisHelper {
|
|||||||
|
|
||||||
static String toRaftPeerIdString(DatanodeDetails id) {
|
static String toRaftPeerIdString(DatanodeDetails id) {
|
||||||
return id.getUuidString() + "_" +
|
return id.getUuidString() + "_" +
|
||||||
id.getPort(DatanodeDetails.Port.Name.RATIS);
|
id.getPort(DatanodeDetails.Port.Name.RATIS).getValue();
|
||||||
}
|
}
|
||||||
|
|
||||||
static String toRaftPeerAddressString(DatanodeDetails id) {
|
static String toRaftPeerAddressString(DatanodeDetails id) {
|
||||||
return id.getIpAddress() + ":" +
|
return id.getIpAddress() + ":" +
|
||||||
id.getPort(DatanodeDetails.Port.Name.RATIS);
|
id.getPort(DatanodeDetails.Port.Name.RATIS).getValue();
|
||||||
}
|
}
|
||||||
|
|
||||||
static RaftPeerId toRaftPeerId(DatanodeDetails id) {
|
static RaftPeerId toRaftPeerId(DatanodeDetails id) {
|
||||||
|
Loading…
Reference in New Issue
Block a user