don't require hard limit send

This commit is contained in:
Bryan Stitt 2023-01-25 10:01:36 -08:00
parent e85965ec12
commit f2260ecdba

View File

@ -339,9 +339,7 @@ impl OpenRequestHandle {
trace!("retry {} at: {:?}", self.conn, retry_at);
hard_limit_until
.send(retry_at)
.expect("sending hard limit retry times should always work");
hard_limit_until.send_replace(retry_at);
}
}