diff options
author | Keuin <[email protected]> | 2023-06-01 21:55:56 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2023-07-29 20:16:08 +0800 |
commit | 0da1d6d8107f8619aa53f80e14b2cc1bc10ce2ae (patch) | |
tree | 8d9cf06a9c900acdc3467306f22a81c3f46170a4 | |
parent | 49082656b79cea1d5ea21fe92564eaddd9b5843a (diff) |
Cool down before restarting from errors.
-rw-r--r-- | common/cooldown.go | 18 | ||||
-rw-r--r-- | recording/runner.go | 4 |
2 files changed, 22 insertions, 0 deletions
diff --git a/common/cooldown.go b/common/cooldown.go new file mode 100644 index 0000000..75da6fd --- /dev/null +++ b/common/cooldown.go @@ -0,0 +1,18 @@ +package common + +import "time" + +type CoolDown struct { + MinInterval time.Duration + lastTicked time.Time +} + +func (c *CoolDown) Tick() { + defer func() { + c.lastTicked = time.Now() + }() + if c.lastTicked.IsZero() { + return + } + time.Sleep(time.Now().Sub(c.lastTicked)) +} diff --git a/recording/runner.go b/recording/runner.go index fcb135e..c724735 100644 --- a/recording/runner.go +++ b/recording/runner.go @@ -119,6 +119,9 @@ func tryRunTask(t *RunningTask) error { var err error defer wg.Done() run := true + cd := common.CoolDown{ + MinInterval: time.Second * 10, + } loop: for run { err = watch( @@ -156,6 +159,7 @@ func tryRunTask(t *RunningTask) error { } if run { t.logger.Info("Restarting watcher...") + cd.Tick() } else { t.logger.Error("Cannot restart watcher to recover from that error.") } |