Skip to content

Commit f601b6f

Browse files
committed
Don't stop processing the queue when tree is closed (fixes #120)
1 parent 7ac3136 commit f601b6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

homu/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1224,7 +1224,7 @@ def process_queue(states, repos, repo_cfgs, logger, buildbot_slots, db,
12241224

12251225
for state in repo_states:
12261226
if state.priority < repo.treeclosed:
1227-
break
1227+
continue
12281228
if state.status == 'pending' and not state.try_:
12291229
break
12301230

0 commit comments

Comments
 (0)