-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Add failoverVersionIncrement & initialFailoverVersion in GetClusterInfo #8090
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add failoverVersionIncrement & initialFailoverVersion in GetClusterInfo #8090
Conversation
Added two new fields to the `GetClusterInfoResponse` proto: ```protobuf int64 failover_version_increment = 9; int64 initial_failover_version = 10; ``` [Server PR](temporalio/temporal#8090) --------- Co-authored-by: Roey Berman <roey.berman@gmail.com>
Added two new fields to the `GetClusterInfoResponse` proto: ```protobuf int64 failover_version_increment = 9; int64 initial_failover_version = 10; ``` [Server PR](temporalio/temporal#8090) --------- Co-authored-by: Roey Berman <roey.berman@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess this also need to have the api version upgraded.
We are in a release process right now and need to ping api dependency to a tagged version. So just blocking this PR for one day and I will approve the PR tomorrow.
@vaibhavyadav-dev you will need to |
36d1004
to
602e9b2
Compare
What changed?
FailoverVersionIncrement
andInitialFailoverVersion
fields to the GetClusterInfoResponse protobuf message.operator cluster describe -o json
Why?
Closes #7294
How did you test it?