Merge latest main and fix database command lint
Integration Tests / integration-test (pull_request) Successful in 41s

This commit is contained in:
SG Command
2026-09-21 06:06:55 +02:00
14 changed files with 618 additions and 16 deletions
+2 -1
View File
@@ -355,7 +355,8 @@ func runDBList() error {
return nil
}
fmt.Printf("%-20s %-20s %-6s %-16s %-16s %-10s\n", "NAME", "HOST", "PORT", "DATABASE", "USER", "STATUS")
for _, db := range dbs {
for i := range dbs {
db := &dbs[i]
status := "enabled"
if db.Disabled {
status = "disabled"