Commit 522169051e
522169051e5b9a5c47f18affa603f349eda66771
parent: ed403b692d
Verified · cmc
cmc <hello@cleberg.net> · 2026-09-24 02:09 UTC
control: runner fingerprints shrink; the one-revision note goes to stderr
Ref #254
internal/control/admin.go
+1 −1
| @@ -541,7 +541,7 @@ func runAdminRunners(c *Ctx, args []string) int { |
| 541 | 541 | if r.BuildNumber != 0 { |
| 542 | 542 | held = fmt.Sprintf("%s #%d %s since %s", r.BuildRepo, r.BuildNumber, r.BuildJob, r.StartedAt) |
| 543 | 543 | } |
| 544 | | tb.row(cText(r.Username), cRef(r.Fingerprint), cAge(r.LastSeen), cText(scope), cText(held)) |
| 544 | tb.row(cText(r.Username), cFlex(r.Fingerprint), cAge(r.LastSeen), cText(scope), cText(held)) |
| 545 | 545 | } |
| 546 | 546 | tb.flush() |
| 547 | 547 | }) |
internal/control/mr.go
+1 −1
| @@ -1715,7 +1715,7 @@ func runMRRevisions(c *Ctx, args []string) int { |
| 1715 | 1715 | } |
| 1716 | 1716 | tb.flush() |
| 1717 | 1717 | if len(revs) < 2 { |
| 1718 | | fmt.Fprintf(w, "\nonly one revision; %s!%d has not been pushed to since it was opened\n", |
| 1718 | fmt.Fprintf(c.Stderr, "only one revision; %s!%d has not been pushed to since it was opened\n", |
| 1719 | 1719 | repo.Path(), mr.Number) |
| 1720 | 1720 | } |
| 1721 | 1721 | }) |