Use a common set of running nodes for tests

This commit is contained in:
Dominik Werder
2021-05-27 21:58:58 +02:00
parent 39615eaf5c
commit c8aebac2c4
4 changed files with 41 additions and 11 deletions

View File

@@ -376,6 +376,7 @@ where
continue 'outer;
}
Err(e) => match e.kind() {
// TODO other error kinds
std::io::ErrorKind::NotFound => match self.try_setup_fetch_prebinned_higher_res() {
Ok(_) => {
if self.fut2.is_none() {
@@ -398,7 +399,7 @@ where
}
},
_ => {
error!("File I/O error: {:?}", e);
error!("File I/O error: kind {:?} {:?}\n\n..............", e.kind(), e);
self.errored = true;
Ready(Some(Err(e.into())))
}