We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88ee07e commit 3505ad2Copy full SHA for 3505ad2
1 file changed
README.md
@@ -86,3 +86,14 @@ Reset backoff from all submissions:
86
```sql
87
UPDATE submission set backoff_until = NULL, last_backoff = NULL where backoff_until is not null;
88
```
89
+
90
+Check for old stuck runs:
91
+```sql
92
+\x auto
93
+SELECT * FROM branch WHERE status='testing';
94
+```
95
96
+Remove stuck run:
97
98
+UPDATE branch SET status = 'failed' WHERE build_id = '<some build id>'
99
0 commit comments