Fix dupe port on cluster_info

and remove unintended grow file
This commit is contained in:
Stephen Akridge
2019-03-20 11:28:55 -07:00
committed by sakridge
parent 791ead6053
commit 4126461f87
2 changed files with 3 additions and 2 deletions

View File

@ -1805,10 +1805,11 @@ mod tests {
#[test] #[test]
fn new_replicator_external_ip_test() { fn new_replicator_external_ip_test() {
let ip = IpAddr::V4(Ipv4Addr::from(0)); let ip = Ipv4Addr::from(0);
let node = let node =
Node::new_replicator_with_external_ip(&Keypair::new().pubkey(), &socketaddr!(0, 8050)); Node::new_replicator_with_external_ip(&Keypair::new().pubkey(), &socketaddr!(ip, 0));
let ip = IpAddr::V4(ip);
check_socket(&node.sockets.storage.unwrap(), ip, FULLNODE_PORT_RANGE); check_socket(&node.sockets.storage.unwrap(), ip, FULLNODE_PORT_RANGE);
check_socket(&node.sockets.gossip, ip, FULLNODE_PORT_RANGE); check_socket(&node.sockets.gossip, ip, FULLNODE_PORT_RANGE);
check_socket(&node.sockets.repair, ip, FULLNODE_PORT_RANGE); check_socket(&node.sockets.repair, ip, FULLNODE_PORT_RANGE);

Binary file not shown.