Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions TEMPLATES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4225,10 +4225,6 @@ ALTER TABLE `products` ADD INDEX `idx_price`(`price_cents`);
```


---

Cutover in progress — typically completes within seconds.

_Last updated: <relative-time datetime="2026-01-01T00:00:00Z">2026-01-01 00:00:00 UTC</relative-time> (2026-01-01 00:00:00 UTC)_

</details>
Expand Down Expand Up @@ -8318,7 +8314,6 @@ Defer cutover: Cutting over in progress
~ users: 🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦 Cutting over...
ALTER TABLE `users` ADD INDEX `idx_email_created`(`email`, `created_at`);

Cutover in progress. This typically completes within seconds.
Tables are being renamed atomically...
```
</details>
Expand Down
1 change: 0 additions & 1 deletion pkg/cmd/internal/templates/preview_defer.go
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,6 @@ func previewDeferCuttingOutput() {
}
WriteProgress(data)

fmt.Println("Cutover in progress. This typically completes within seconds.")
fmt.Println("Tables are being renamed atomically...")
}

Expand Down
3 changes: 0 additions & 3 deletions pkg/webhook/templates/apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -1215,9 +1215,6 @@ func writeApplyFooter(sb *strings.Builder, data ApplyStatusCommentData) {
} else {
sb.WriteString("Recovering after restart. Cutover will be available once recovery completes.\n")
}
case state.Apply.CuttingOver:
sb.WriteString("\n---\n\n")
sb.WriteString("Cutover in progress — typically completes within seconds.\n")
case state.Apply.Running, state.Apply.RunningDegraded,
state.Apply.CatchingUp, state.Apply.Checksumming, state.Apply.PostChecksum:
if hasRetryingTable(data.Tables) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/webhook/templates/sharded_apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ func shardedTableStatusPhrase(status string) string {
case state.Task.Recovering:
return "🔄 Recovering state..."
case state.Task.Failed:
return "❌ Failed"
return glyph.Failed + " Failed"
case state.Task.FailedRetryable:
return "🔄 Interrupted — retrying automatically"
case state.Task.Stopped:
Expand Down
Loading