Browse Source

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

Jakob Borg 11 years ago
parent
commit
8aa7d4b463
1 changed files with 2 additions and 2 deletions
  1. 2 2
      cmd/syncthing/monitor.go

+ 2 - 2
cmd/syncthing/monitor.go

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