From 0da1d6d8107f8619aa53f80e14b2cc1bc10ce2ae Mon Sep 17 00:00:00 2001 From: Keuin Date: Thu, 1 Jun 2023 21:55:56 +0800 Subject: Cool down before restarting from errors. --- recording/runner.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'recording') 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.") } -- cgit v1.2.3