Compare commits

...

2 Commits

Author SHA1 Message Date
bel 439c481c60 log err
cicd / ci (push) Successful in 3m25s
2026-07-07 17:16:08 -06:00
bel 0a58f85ca3 2d cause only reaps sad
cicd / ci (push) Successful in 2m56s
2026-06-28 09:42:07 -06:00
+3 -1
View File
@@ -160,7 +160,7 @@ func (s S) collectGarbage(ctx context.Context) error {
ms < 100 ms < 100
OR ok OR ok
) )
`, time.Now().Add(-1*30*24*time.Hour).Unix()); err != nil { `, time.Now().Add(-1*2*24*time.Hour).Unix()); err != nil {
log.Println("!", err) log.Println("!", err)
} }
} }
@@ -251,6 +251,8 @@ func (s S) pingAndRecord(ctx context.Context) error {
} }
if err == nil { if err == nil {
conn.Close() conn.Close()
} else {
log.Println("!", err)
} }
}() }()
} }