mirror of
https://gitlab.com/famedly/conduit.git
synced 2025-01-09 07:44:46 +00:00
fix: auth event fetch order
This commit is contained in:
parent
54f4d39e3e
commit
5bcc1324ed
@ -1931,7 +1931,7 @@ pub(crate) fn fetch_and_handle_outliers<'a>(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (next_id, value) in events_in_reverse_order {
|
for (next_id, value) in events_in_reverse_order.iter().rev() {
|
||||||
match handle_outlier_pdu(
|
match handle_outlier_pdu(
|
||||||
origin,
|
origin,
|
||||||
create_event,
|
create_event,
|
||||||
@ -1944,13 +1944,13 @@ pub(crate) fn fetch_and_handle_outliers<'a>(
|
|||||||
.await
|
.await
|
||||||
{
|
{
|
||||||
Ok((pdu, json)) => {
|
Ok((pdu, json)) => {
|
||||||
if next_id == *id {
|
if next_id == id {
|
||||||
pdus.push((pdu, Some(json)));
|
pdus.push((pdu, Some(json)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
warn!("Authentication of event {} failed: {:?}", next_id, e);
|
warn!("Authentication of event {} failed: {:?}", next_id, e);
|
||||||
back_off((*next_id).to_owned());
|
back_off((**next_id).to_owned());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user