diff options
| author | Jeff Carr <[email protected]> | 2025-09-04 00:13:31 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-04 00:13:31 -0500 |
| commit | 33f801ed717dc3edb73c8619d6ea7b4694342437 (patch) | |
| tree | 37e19ef041e2e85ecce8fde230faab681d5e3808 /watchdog.go | |
| parent | 7c2c36f892e6c858954ce205e3136036962dfb33 (diff) | |
finally crapping panic() (maybe. notsure.)
Diffstat (limited to 'watchdog.go')
| -rw-r--r-- | watchdog.go | 6 |
1 files changed, 0 insertions, 6 deletions
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: |
