Skip to content

Commit

Permalink
leapp-report no longer uses groups - changed to flags
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaleb Stolee committed Nov 15, 2024
1 parent 52b3a76 commit dd8d843
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions changelogs/fragments/bugfix_leapp_flag.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
minor_changes:
- groups no longer in leapp_report - changed to flags

4 changes: 2 additions & 2 deletions roles/parse_leapp_report/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
when:
- item.key not in leapp_known_inhibitors | default([], true)
- (leapp_high_sev_as_inhibitors | default(false, true) | bool and item.severity == 'high') or
'inhibitor' in item.groups | default([], true) or
'error' in item.groups | default([], true)
'inhibitor' in item.flags | default([], true) or
'error' in item.flags | default([], true)
loop: "{{ leapp_report_json.entries }}"

- name: Collect inhibitors
Expand Down

0 comments on commit dd8d843

Please sign in to comment.