From 33f801ed717dc3edb73c8619d6ea7b4694342437 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 4 Sep 2025 00:13:31 -0500 Subject: finally crapping panic() (maybe. notsure.) --- watchdog.go | 6 ------ 1 file changed, 6 deletions(-) (limited to 'watchdog.go') diff --git a/watchdog.go b/watchdog.go index 2bd745a..cba0097 100644 --- a/watchdog.go +++ b/watchdog.go @@ -27,12 +27,6 @@ func myTicker(t time.Duration, name string, f func()) { ticker := time.NewTicker(t) defer ticker.Stop() done := make(chan bool) - /* - go func() { - time.Sleep(10 * time.Second) - done <- true - }() - */ for { select { case <-done: -- cgit v1.2.3