Skip to content

Commit

Permalink
cluster-stable
Browse files Browse the repository at this point in the history
  • Loading branch information
tanmayja committed Sep 3, 2024
1 parent 6222fa7 commit 6986210
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deployment/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ func (c *cluster) infoClusterStable(hostIDs []string) error {
lg.V(1).Info("Executing cluster-stable command")

cmd := fmt.Sprintf(
"cluster-stable:size=%d;ignore-migrations=no", len(hostIDs),
"cluster-stable:size=%d;ignore-migrations=false", len(hostIDs),
)

infoResults, err := c.infoOnHosts(hostIDs, cmd)
Expand Down Expand Up @@ -562,7 +562,7 @@ func (c *cluster) infoClusterStablePerNamespace(hostIDs, removedNamespaces []str

for ns := range effectiveNamespaces.Iter() {
cmd := fmt.Sprintf(
"cluster-stable:size=%d;ignore-migrations=no;namespace=%s", len(hostIDs), ns,
"cluster-stable:size=%d;ignore-migrations=false;namespace=%s", len(hostIDs), ns,
)

infoResults, err := c.infoOnHosts(hostIDs, cmd)
Expand Down

0 comments on commit 6986210

Please sign in to comment.