1
0
Fork 0
mirror of https://github.com/Nutomic/ibis.git synced 2024-12-23 17:01:23 +00:00

Ignore errors during edit connection sync

This commit is contained in:
Felix Ableitner 2024-12-10 10:11:43 +01:00
parent 8b2c08d110
commit 4d156b454a
2 changed files with 16 additions and 13 deletions

21
Cargo.lock generated
View file

@ -4655,9 +4655,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "wasm-bindgen"
version = "0.2.96"
version = "0.2.99"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21d3b25c3ea1126a2ad5f4f9068483c2af1e64168f847abe863a526b8dbfe00b"
checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396"
dependencies = [
"cfg-if",
"once_cell",
@ -4666,13 +4666,12 @@ dependencies = [
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.96"
version = "0.2.99"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52857d4c32e496dc6537646b5b117081e71fd2ff06de792e3577a150627db283"
checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79"
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
"syn 2.0.87",
@ -4693,9 +4692,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.96"
version = "0.2.99"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "920b0ffe069571ebbfc9ddc0b36ba305ef65577c94b06262ed793716a1afd981"
checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
@ -4703,9 +4702,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.96"
version = "0.2.99"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf59002391099644be3524e23b781fa43d2be0c5aa0719a18c0731b9d195cab6"
checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2"
dependencies = [
"proc-macro2",
"quote",
@ -4716,9 +4715,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.96"
version = "0.2.99"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5047c5392700766601942795a436d7d2599af60dcc3cc1248c9120bfb0827b0"
checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6"
[[package]]
name = "wasm-streams"

View file

@ -9,6 +9,7 @@ use activitypub_federation::{
traits::{Collection, Object},
};
use futures::{future, future::try_join_all};
use log::warn;
use serde::{Deserialize, Serialize};
use url::Url;
@ -64,10 +65,13 @@ impl Collection for DbEditCollection {
async fn from_json(
apub: Self::Kind,
_owner: &Self::Owner,
owner: &Self::Owner,
data: &Data<Self::DataType>,
) -> Result<Self, Self::Error> {
try_join_all(apub.items.into_iter().map(|i| DbEdit::from_json(i, data))).await?;
try_join_all(apub.items.into_iter().map(|i| DbEdit::from_json(i, data)))
.await
.map_err(|e| warn!("Failed to synchronize edits for {}: {e}", owner.ap_id))
.ok();
Ok(DbEditCollection())
}
}