1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-07-04 17:38:35 +02:00

Merge branch 'pdu-success' into 'master'

fix: also return successful PDUs in /send/:txnId

See merge request famedly/conduit!90
This commit is contained in:
Timo Kösters 2021-05-27 21:24:43 +00:00
commit 0805f4ac2a

View file

@ -628,19 +628,20 @@ pub async fn send_transaction_message_route<'a>(
};
let start_time = Instant::now();
if let Err(e) = handle_incoming_pdu(
&body.origin,
&event_id,
value,
true,
&db,
&pub_key_map,
&mut auth_cache,
)
.await
{
resolved_map.insert(event_id.clone(), Err(e));
}
resolved_map.insert(
event_id.clone(),
handle_incoming_pdu(
&body.origin,
&event_id,
value,
true,
&db,
&pub_key_map,
&mut auth_cache,
)
.await
.map(|_| ()),
);
let elapsed = start_time.elapsed();
if elapsed > Duration::from_secs(1) {