Skip to content

Commit

Permalink
Increase InReach delays
Browse files Browse the repository at this point in the history
  • Loading branch information
vicb committed Mar 7, 2024
1 parent 3d2f56f commit f452a30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/fetcher/src/app/trackers/inreach.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,12 +156,12 @@ export class InreachFetcher extends TrackerFetcher {
return Math.floor(30 + Math.random() * 3) * 60;
}
if (lastFixAgeSec > 3 * 3600) {
return Math.floor(15 + Math.random() * 3) * 60;
return Math.floor(20 + Math.random() * 3) * 60;
}
if (lastFixAgeSec > 30 * 60) {
return Math.floor(8 + Math.random() * 3) * 60;
}
return 2 * 60;
return 4 * 60;
}
}

Expand Down

0 comments on commit f452a30

Please sign in to comment.