Skip to content

Commit

Permalink
Add another connection attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
2e3s committed Jan 22, 2025
1 parent 7ac76da commit b07d395
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion watchers/src/report_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ impl ReportClient {
Fut: Future<Output = Result<T, E>>,
E: std::error::Error + Send + Sync + 'static,
{
for (attempt, &secs) in [1, 2].iter().enumerate() {
for (attempt, &secs) in [1, 2, 4].iter().enumerate() {
match f().await {
Ok(val) => return Ok(val),
Err(e)
Expand Down

0 comments on commit b07d395

Please sign in to comment.