mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Merge branch 'dev' of github.com:bunkerity/bunkerweb into dev
This commit is contained in:
commit
ec4a5647fc
1 changed files with 5 additions and 1 deletions
|
|
@ -356,7 +356,11 @@ class Instances:
|
|||
|
||||
reports: List[dict[str, Any]] = []
|
||||
for instance in self.get_instances():
|
||||
resp, instance_reports = instance.reports()
|
||||
try:
|
||||
resp, instance_reports = instance.reports()
|
||||
except :
|
||||
continue
|
||||
|
||||
if not resp:
|
||||
continue
|
||||
reports.extend(instance_reports[instance.name if instance.name != "local" else "127.0.0.1"].get("msg", []))
|
||||
|
|
|
|||
Loading…
Reference in a new issue