Skip to content

Commit

Permalink
Merge branch 'eichhorl/reduce-cup-timeout' into 'master'
Browse files Browse the repository at this point in the history
chore(ic-recovery): reduce wait for CUP timeout

 

See merge request dfinity-lab/public/ic!12831
  • Loading branch information
eichhorl committed Jun 8, 2023
2 parents 6f29aa3 + 7e92536 commit 8a2bcf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rs/recovery/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ impl Recovery {
})?;

let mut cup_present = false;
for i in 0..100 {
for i in 0..20 {
let maybe_cup = match block_on(get_catchup_content(&node_url)) {
Ok(res) => res,
Err(e) => {
Expand Down

0 comments on commit 8a2bcf3

Please sign in to comment.