Skip to content

Commit

Permalink
make the method getQuiescedNodes public
Browse files Browse the repository at this point in the history
  • Loading branch information
JessicaGreben committed Oct 13, 2023
1 parent bbe52c6 commit 83c39de
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 @@ -601,7 +601,7 @@ func (c *cluster) infoClusterStablePerNamespace(hostIDs, removedNamespaces []str
return nil
}

func (c *cluster) getQuiescedNodes(hostIDs []string) ([]string, error) {
func (c *cluster) GetQuiescedNodes(hostIDs []string) ([]string, error) {
var quiescedNodes []string

namespaces, err := c.getClusterNamespaces(hostIDs)
Expand Down Expand Up @@ -676,7 +676,7 @@ func (c *cluster) InfoQuiesceUndo(hostIDs []string) error {
}

// Fetching quiesced Nodes
quiescedNodes, err := c.getQuiescedNodes(hostIDs)
quiescedNodes, err := c.GetQuiescedNodes(hostIDs)
if err != nil {
return err
}
Expand Down

0 comments on commit 83c39de

Please sign in to comment.