v0.10.302 #2

Merged
didirus merged 289 commits from feature-clean into beta 2025-07-08 15:00:09 +00:00
2 changed files with 1 additions and 3 deletions
Showing only changes of commit 69b70d70a8 - Show all commits

View File

@@ -218,7 +218,7 @@ impl ChargeItem {
(status = 'open' AND due < NOW()) OR
(status = 'failed' AND last_attempt < NOW() - INTERVAL '2 days')
)
FOR UPDATE SKIP LOCKED
-- FOR UPDATE SKIP LOCKED
"#,
charge_type
)

View File

@@ -2302,8 +2302,6 @@ pub async fn index_billing(
)
.await?;
let mut transaction = pool.begin().await?;
for mut charge in charges_to_do {
let product_price = if let Some(price) =
prices.iter().find(|x| x.id == charge.price_id)