Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
praiskup committed Dec 4, 2024
1 parent ed088ee commit 6c16025
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/coprs_frontend/coprs/logic/builds_logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1458,9 +1458,9 @@ def processing_builds(cls):
builds that have non-finished source status, or any non-finished
existing build chroot.
"""
build_ids_with_bch = db.session.query(BuildChroot.build_id).filter(
build_ids_with_bch = [x[0] for x in db.session.query(BuildChroot.build_id).filter(
BuildChroot.status.in_(PROCESSING_STATES),
)
).all()]
# skip waiting state, we need to fix issue #1539
source_states = set(PROCESSING_STATES)-{StatusEnum("waiting")}
return models.Build.query.filter(and_(
Expand Down

0 comments on commit 6c16025

Please sign in to comment.