Skip to content

Commit

Permalink
Merge pull request #1276 from locriandev/fix
Browse files Browse the repository at this point in the history
Fix elliott find-builds
  • Loading branch information
openshift-merge-bot[bot] authored Jan 16, 2025
2 parents 9a8d7f5 + fac0cec commit de3d8b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elliott/elliottlib/cli/find_builds_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ async def _fetch_builds_by_kind_rpm(runtime: Runtime, tag_pv_map: Dict[str, str]
pinned_nvrs = set()
if member_only: # Sweep only member rpms
for tag in tag_pv_map:
tasks = [exectools.to_thread(progress_func, functools.partial(rpm.get_latest_brew_build, default=None, el_target=tag)) for rpm in runtime.rpm_metas()]
tasks = [exectools.to_thread(progress_func, functools.partial(rpm.get_latest_build, default=None, el_target=tag)) for rpm in runtime.rpm_metas()]
builds_for_tag = await asyncio.gather(*tasks)
builds.extend(filter(lambda b: b is not None, builds_for_tag))

Expand Down

0 comments on commit de3d8b7

Please sign in to comment.