Skip to content

Commit

Permalink
reduce default budget (can be amortized for each chunk)
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed Jan 2, 2024
1 parent b13785a commit 986b9e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ async fn worker(i: usize, assets: Arc<Assets>, tx: mpsc::Sender<Pull>, logger: L
};
let mut engine_backoff = RandomizedBackoff::default();

let default_budget = Duration::from_secs(60);
let default_budget = Duration::from_secs(30);
let mut budget = default_budget;

loop {
Expand Down

0 comments on commit 986b9e0

Please sign in to comment.