Skip to content

Commit

Permalink
Merge pull request #78 from holaplex/abdul/25-retries
Browse files Browse the repository at this point in the history
increase retries to 25
  • Loading branch information
imabdulbasit authored Oct 11, 2023
2 parents f9c3060 + 3a07347 commit bdc357f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion consumer/src/solana.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ macro_rules! with_retry {
&ExponentialBuilder::default()
.with_jitter()
.with_min_delay(Duration::from_millis(30))
.with_max_times(15),
.with_max_times(25),
)
.notify(|err: &ClientError, dur: Duration| {
error!("retrying error {:?} in {:?}", err, dur);
Expand Down

0 comments on commit bdc357f

Please sign in to comment.