Lower the bar for when to stop restarting (fixes #1004)

This commit is contained in:
Jakob Borg 2014-11-27 20:34:35 +01:00
parent 5251f1c9db
commit 8aa7d4b463
1 changed files with 2 additions and 2 deletions

View File

@ -38,8 +38,8 @@ var (
)
const (
countRestarts = 5
loopThreshold = 15 * time.Second
countRestarts = 4
loopThreshold = 60 * time.Second
)
func monitorMain() {