Fix database initialization connection leaks

This commit is contained in:
2026-05-07 18:34:18 -08:00
parent dfcd250892
commit 969b30c0e0
3 changed files with 18 additions and 15 deletions
+2
View File
@@ -47,8 +47,10 @@ func RunPostfixes() {
continue
}
if rows.Next() {
rows.Close()
continue
} else {
rows.Close()
err := postfix.Invoke(false)
if err != nil {
continue