fix: warn on unknown server
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

See #581
This commit is contained in:
2025-08-18 08:23:06 +02:00
parent f5a843bd90
commit 13b6090c05

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) {