Really skip private rpc port reachable checks (#12239)
This commit is contained in:
parent
ee3f65d8ef
commit
b85e8497b5
|
@ -1312,7 +1312,7 @@ pub fn main() {
|
|||
("RPC pubsub", rpc_pubsub_addr),
|
||||
("RPC banks", rpc_banks_addr),
|
||||
] {
|
||||
if ContactInfo::is_valid_address(&addr) {
|
||||
if !private_rpc && ContactInfo::is_valid_address(&addr) {
|
||||
tcp_listeners.push((
|
||||
addr.port(),
|
||||
TcpListener::bind(addr).unwrap_or_else(|err| {
|
||||
|
|
Loading…
Reference in New Issue