summaryrefslogtreecommitdiff
path: root/recording
diff options
context:
space:
mode:
Diffstat (limited to 'recording')
-rw-r--r--recording/runner.go4
1 files changed, 4 insertions, 0 deletions
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.")
}