Skip to content

Commit

Permalink
fix(live upgrade): newly live upgraded engine doesn't respect the
Browse files Browse the repository at this point in the history
disableRevCounter setting

We forget to set disableRevCounter for the newly live upgraded engine.
As a result, the newly live upgraded engine always has disableRevCounter
as `false` even if the volume has disableRevCounter as `true`.

This mismatch prevents the volume from successfully rebuilding a new
replica.

longhorn-9331

Signed-off-by: Phan Le <phan.le@suse.com>
(cherry picked from commit abb8f26)
  • Loading branch information
PhanLe1010 authored and mergify[bot] committed Aug 29, 2024
1 parent 432556e commit b651e88
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions engineapi/instance_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,10 @@ func (c *InstanceManagerClient) engineInstanceUpgrade(req *EngineInstanceUpgrade
args = append(args, "--replica", GetBackendReplicaURL(addr))
}

if req.Engine.Spec.RevisionCounterDisabled {
args = append(args, "--disableRevCounter")
}

if req.EngineCLIAPIVersion >= 6 {
args = append(args,
"--size", strconv.FormatInt(req.Engine.Spec.VolumeSize, 10),
Expand Down

0 comments on commit b651e88

Please sign in to comment.