Skip to content

Commit 36ce5c7

Browse files
authored
Merge pull request #85 from rust-lang/sort-success-down
Shift success rows in queue to bottom
2 parents b64985a + 20ab3ef commit 36ce5c7

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)