1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-03-13 17:17:23 +01:00

backups: trap an error that occurs as early as getting the current backup status

This commit is contained in:
Joshua Tauberer
2016-01-02 16:25:36 -05:00
parent 5ae75e723c
commit e288d7730b
3 changed files with 22 additions and 10 deletions

View File

@@ -422,7 +422,10 @@ def do_updates():
@authorized_personnel_only
def backup_status():
from backup import backup_status
return json_response(backup_status(env))
try:
return json_response(backup_status(env))
except Exception as e:
return json_response({ "error": str(e) })
@app.route('/system/backup/config', methods=["GET"])
@authorized_personnel_only