1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-09-12 01:09:11 +02:00

improvement: stop prev event fetching if too many events fail

This commit is contained in:
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

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();