Add logging and change limit of Mural payouts task (#4798)

This commit is contained in:
aecsocket
2025-11-19 12:38:30 +00:00
committed by GitHub
parent 9af19d01e5
commit 2f0ef07944
3 changed files with 22 additions and 5 deletions

View File

@@ -197,7 +197,8 @@ pub async fn payouts(
}
pub async fn sync_payout_statuses(pool: sqlx::Pool<Postgres>, mural: MuralPay) {
const LIMIT: u32 = 1000;
// Mural sets a max limit of 100 for search payouts endpoint
const LIMIT: u32 = 100;
info!("Started syncing payout statuses");