0
0
forked from toolshed/abra

fix: warn on unknown server

See toolshed/abra#581
This commit is contained in:
2025-08-18 08:23:06 +02:00
parent f5a843bd90
commit f46c18c8d7
2 changed files with 32 additions and 1 deletions

View File

@ -426,7 +426,9 @@ func GetAppStatuses(apps []App, MachineReadable bool) (map[string]map[string]str
for server := range servers {
cl, err := client.New(server)
if err != nil {
return statuses, err
log.Warn(err)
ch <- stack.StackStatus{}
continue
}
go func(s string) {