TestValidator now implements Drop, no need to close() it

This commit is contained in:
Michael Vines
2020-12-10 17:28:52 -08:00
committed by mergify[bot]
parent 0a9ff1dc9d
commit bbad3fe501
15 changed files with 38 additions and 78 deletions

View File

@@ -1740,6 +1740,6 @@ pub fn main() {
});
}
info!("Validator initialized");
validator.join().expect("validator exit");
validator.join();
info!("Validator exiting..");
}