Skip to content

Commit

Permalink
uncross bar health check
Browse files Browse the repository at this point in the history
  • Loading branch information
wphan committed Dec 6, 2023
1 parent 0d4572c commit 8c02f52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bots/uncrossArbBot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export class UncrossArbBot implements Bot {
let healthy = false;
await this.watchdogTimerMutex.runExclusive(async () => {
healthy =
this.watchdogTimerLastPatTime > Date.now() - 2 * this.defaultIntervalMs;
this.watchdogTimerLastPatTime > Date.now() - 5 * this.defaultIntervalMs;
});
return healthy;
}
Expand Down

0 comments on commit 8c02f52

Please sign in to comment.