mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-03 00:07:05 +00:00
make reading of previous status check result more robust
This commit is contained in:
parent
7646095b94
commit
14db287766
@ -965,7 +965,11 @@ def run_and_output_changes(env, pool):
|
|||||||
cache_fn = "/var/cache/mailinabox/status_checks.json"
|
cache_fn = "/var/cache/mailinabox/status_checks.json"
|
||||||
if os.path.exists(cache_fn):
|
if os.path.exists(cache_fn):
|
||||||
with open(cache_fn, 'r') as f:
|
with open(cache_fn, 'r') as f:
|
||||||
prev = json.load(f)
|
try:
|
||||||
|
prev = json.load(f)
|
||||||
|
except json.JSONDecodeError:
|
||||||
|
logging.debug('Could not decode previous status checks JSON file')
|
||||||
|
prev = []
|
||||||
|
|
||||||
# Group the serial output into categories by the headings.
|
# Group the serial output into categories by the headings.
|
||||||
def group_by_heading(lines):
|
def group_by_heading(lines):
|
||||||
|
Loading…
Reference in New Issue
Block a user