feat: manual entity creation

chore: clippy
This commit is contained in:
Per Stark
2025-10-15 21:00:17 +02:00
parent 2964f1a5a5
commit 35ff4e1464
14 changed files with 653 additions and 43 deletions
+1 -1
View File
@@ -111,7 +111,7 @@ impl IngestionPipeline {
const BASE_SECONDS: u64 = 30;
const MAX_SECONDS: u64 = 15 * 60;
let capped_attempt = attempt.saturating_sub(1).min(5) as u32;
let capped_attempt = attempt.saturating_sub(1).min(5);
let multiplier = 2_u64.pow(capped_attempt);
let delay = BASE_SECONDS * multiplier;