mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2025-01-13 08:35:59 +00:00
add retry (#232)
This commit is contained in:
parent
3fc1543fb4
commit
a4b02a21b7
@ -662,17 +662,24 @@ async fn check_watch_process(
|
|||||||
"get block hash for block {} from RPC, assume there is no org",
|
"get block hash for block {} from RPC, assume there is no org",
|
||||||
*progress - 1
|
*progress - 1
|
||||||
);
|
);
|
||||||
match provider.get_block(*progress - 1).await {
|
let hash = loop {
|
||||||
Ok(Some(v)) => {
|
match provider.get_block(*progress - 1).await {
|
||||||
break v.hash.expect("parent block hash expect exist");
|
Ok(Some(v)) => {
|
||||||
|
break v.hash.expect("parent block hash expect exist");
|
||||||
|
}
|
||||||
|
Ok(None) => {
|
||||||
|
panic!("parent block {} expect exist", *progress - 1);
|
||||||
|
}
|
||||||
|
Err(e) => {
|
||||||
|
if e.to_string().contains("server is too busy") {
|
||||||
|
warn!("server busy, wait for parent block {}", *progress - 1);
|
||||||
|
} else {
|
||||||
|
panic!("parent block {} expect exist, error {}", *progress - 1, e);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Ok(None) => {
|
};
|
||||||
panic!("parent block {} expect exist", *progress - 1);
|
break hash;
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
panic!("parent block {} expect exist, error {}", *progress - 1, e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user