Skip to content

Commit 20ab3ef

Browse files
Shift success rows in queue to bottom
Generally these are try builds which have concluded; ideally we wouldn't show them at all (there's really no reason for them to be in the queue) but that's a harder change. On the rust-lang/rust queue these typically take up the first 1.5 pages of queue -- which is wasteful, as there's not really interesting information to be gleaned from them. This moves that list to the bottom of the page.
1 parent b64985a commit 20ab3ef

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
@@ -27,12 +27,12 @@
2727
import weakref
2828

2929
STATUS_TO_PRIORITY = {
30-
'success': 0,
3130
'pending': 1,
3231
'approved': 2,
3332
'': 3,
3433
'error': 4,
3534
'failure': 5,
35+
'success': 6,
3636
}
3737

3838
INTERRUPTED_BY_HOMU_FMT = 'Interrupted by Homu ({})'

0 commit comments

Comments
 (0)