Add testing 2 second timeout

This commit is contained in:
Owen
2026-09-15 11:08:47 -04:00
parent 68c3fc9274
commit 732af2a87e
+2 -1
View File
@@ -205,7 +205,8 @@ func runNewtMain(ctx context.Context) {
}
}
go func() {
time.Sleep(2 * time.Minute)
time.Sleep(2 * time.Minute) // for production
// time.Sleep(10 * time.Second) // for testing, check for updates after 10 seconds
doUpdate()
ticker := time.NewTicker(6 * time.Hour)
defer ticker.Stop()