Use PohRecorder to synchronize instead of rotate. (#3080)

This commit is contained in:
anatoly yakovenko
2019-03-03 16:44:06 -08:00
committed by GitHub
parent 2ec9bc9f05
commit 1654199b23
20 changed files with 486 additions and 1068 deletions

View File

@@ -61,7 +61,6 @@ fn test_replicator_startup_basic() {
None,
&fullnode_config,
);
let leader_exit = leader.run(None);
debug!(
"leader: {:?}",
@@ -91,7 +90,6 @@ fn test_replicator_startup_basic() {
Some(&leader_info),
&fullnode_config,
);
let validator_exit = validator.run(None);
let bob = Keypair::new();
@@ -217,8 +215,8 @@ fn test_replicator_startup_basic() {
}
replicator.close();
validator_exit();
leader_exit();
validator.close().unwrap();
leader.close().unwrap();
}
info!("cleanup");