Hande instant overflow
There's a typical pattern in the codebase:
let deadline = Instant::now() + timeout;
It panics in case of the overflow. We should refactor if using util::instant_saturating_add.
There's a typical pattern in the codebase:
let deadline = Instant::now() + timeout;
It panics in case of the overflow. We should refactor if using util::instant_saturating_add.