summaryrefslogtreecommitdiff
path: root/watchdog.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-04 00:13:31 -0500
committerJeff Carr <[email protected]>2025-09-04 00:13:31 -0500
commit33f801ed717dc3edb73c8619d6ea7b4694342437 (patch)
tree37e19ef041e2e85ecce8fde230faab681d5e3808 /watchdog.go
parent7c2c36f892e6c858954ce205e3136036962dfb33 (diff)
finally crapping panic() (maybe. notsure.)
Diffstat (limited to 'watchdog.go')
-rw-r--r--watchdog.go6
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: