improvement: stop prev event fetching if too many events fail

next
Timo Kösters 2021-08-31 22:04:47 +02:00
parent b9eb39a9c6
commit 33738dbbc2
No known key found for this signature in database
GPG Key ID: 24DA7517711A2BA4
1 changed files with 5 additions and 0 deletions

View File

@ -1084,7 +1084,11 @@ pub(crate) async fn handle_incoming_pdu<'a>(
})
.map_err(|_| "Error sorting prev events".to_owned())?;
let mut errors = 0;
for prev_id in dbg!(sorted) {
if errors >= 5 {
break;
}
if let Some((pdu, json)) = eventid_info.remove(&prev_id) {
let start_time = Instant::now();
let event_id = pdu.event_id.clone();
@ -1099,6 +1103,7 @@ pub(crate) async fn handle_incoming_pdu<'a>(
)
.await
{
errors += 1;
warn!("Prev event {} failed: {}", event_id, e);
}
let elapsed = start_time.elapsed();