Reduce poll sleep (#6068)

* Reduce sleep in poll_for_signature_confirmations

* Unignore test_repairman_catchup
This commit is contained in:
Tyera Eulberg 2019-09-24 17:01:18 -06:00 committed by GitHub
parent 374b776a3e
commit 3562774f8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -588,7 +588,7 @@ impl RpcClient {
return Err(io::Error::new(io::ErrorKind::Other, "signature not found"));
}
}
sleep(Duration::from_secs(1));
sleep(Duration::from_millis(250));
}
Ok(confirmed_blocks)
}

View File

@ -582,7 +582,6 @@ fn test_faulty_node(faulty_node_type: BroadcastStageType) {
}
#[test]
#[ignore]
fn test_repairman_catchup() {
solana_logger::setup();
error!("test_repairman_catchup");