Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/health/hahealth.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def create_report():


if not create_report():
crm.exit_ok({'status': 'Failed to create report'})
crm.exit_fail({'status': 'Failed to create report'})


def extract_report():
Expand All @@ -31,7 +31,7 @@ def extract_report():


if not extract_report():
crm.exit_ok({'status': 'Failed to extract report'})
crm.exit_fail({'status': 'Failed to extract report'})

analysis = ''
if os.path.isfile('health-report/analysis.txt'):
Expand Down
Loading