Skip to content

Commit 3505ad2

Browse files
committed
Add more useful commands to the readme
1 parent 88ee07e commit 3505ad2

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,14 @@ Reset backoff from all submissions:
8686
```sql
8787
UPDATE submission set backoff_until = NULL, last_backoff = NULL where backoff_until is not null;
8888
```
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+
```sql
98+
UPDATE branch SET status = 'failed' WHERE build_id = '<some build id>'
99+
```

0 commit comments

Comments
 (0)