Skip to content

Commit

Permalink
Don't rely on sweep func
Browse files Browse the repository at this point in the history
  • Loading branch information
thegreyd committed Apr 25, 2023
1 parent 6d52fb7 commit d690c80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elliottlib/cli/verify_attached_bugs_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ async def verify_bugs(runtime, verify_bug_status, output, no_verify_blocking_bug
ocp_bugs = []
logger.info(f'Using {runtime.assembly} assembly to search bugs')
for b in [runtime.bug_trackers('jira'), runtime.bug_trackers('bugzilla')]:
bugs = await get_bugs_sweep(runtime, find_bugs_obj, None, b)
bugs = find_bugs_obj.search(bug_tracker_obj=b, verbose=runtime.debug)
logger.info(f"Found {len(bugs)} {b.type} bugs: {[b.id for b in bugs]}")
ocp_bugs.extend(bugs)

Expand Down

0 comments on commit d690c80

Please sign in to comment.