[WIP] do not skip handling proposed on error

This commit is contained in:
2023-10-17 12:52:37 +02:00
parent 2252fe7e86
commit 7e34c6f6cd

View File

@ -269,12 +269,11 @@ def summarize_server_state(givencfgs, ourcfgs, sealist, sea_info, strict=False):
if addons: if addons:
result['addons'] = ','.join(addons) result['addons'] = ','.join(addons)
if not error: for service, cfg in ourcfgs.items():
for service, cfg in ourcfgs.items(): if cfg:
if cfg: prop = result.get(service, '')
prop = result.get(service, '') if prop == cfg and service not in restart:
if prop == cfg and service not in restart: result[service] = True
result[service] = True
return error, result, (ourcfgs, seacfgs), (givencfgs, remarks) return error, result, (ourcfgs, seacfgs), (givencfgs, remarks)