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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
- Missing values from cluster upgrade operation state enum

## [3.6.4] - 2025-04-07
### Added
Expand Down
11 changes: 9 additions & 2 deletions src/models/operation.cr
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,20 @@ module CB::Model
enum State
Canceling
Creating
Destroying
DisablingHA
EnablingHA
FailingOver
Finalizing
InProgress
Ready
ReplayingWAL
Scheduled
Replaying
Restarting
Restoring
Resuming
Starting
Suspended
Suspending
WaitingForHAStandby

def to_s(io : IO) : Nil
Expand Down