mirror of
https://github.com/versia-pub/activitypub.git
synced 2025-12-06 06:38:20 +01:00
log fed
This commit is contained in:
parent
8a61240d3b
commit
ffa14e2881
|
|
@ -18,6 +18,7 @@ use activitypub_federation::{
|
||||||
};
|
};
|
||||||
use sea_orm::{ColumnTrait, EntityTrait, QueryFilter};
|
use sea_orm::{ColumnTrait, EntityTrait, QueryFilter};
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
use tracing::info;
|
||||||
use url::Url;
|
use url::Url;
|
||||||
|
|
||||||
#[derive(Deserialize, Serialize, Debug)]
|
#[derive(Deserialize, Serialize, Debug)]
|
||||||
|
|
@ -120,9 +121,10 @@ async fn federate_inbox(note: crate::entities::post::Model) -> anyhow::Result<()
|
||||||
|
|
||||||
let req_client = request_client();
|
let req_client = request_client();
|
||||||
for inbox in array {
|
for inbox in array {
|
||||||
let push = req_client.post(inbox)
|
let push = req_client.post(inbox.clone())
|
||||||
.json(&json)
|
.json(&json)
|
||||||
.send();
|
.send();
|
||||||
|
info!("{}", inbox.to_string());
|
||||||
tokio::spawn(push);
|
tokio::spawn(push);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue