Skip to content

Commit

Permalink
Sync from server repo (4f4c9fbfe8f)
Browse files Browse the repository at this point in the history
  • Loading branch information
releng committed Oct 25, 2024
1 parent 80bbd1c commit d2e515d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions vclusterops/start_node.go
Original file line number Diff line number Diff line change
Expand Up @@ -457,13 +457,13 @@ func produceStartNodeReIPInstructions(instructions *[]clusterOp,
}
// host is set to nil value in the reload spread step
// we use information from node information to find the up host later
httpsReloadSpreadOp, err := makeHTTPSReloadSpreadOp(true, options.UserName, options.Password)
httpsReloadSpreadOp, err := makeHTTPSReloadSpreadOp(options.usePassword, options.UserName, options.Password)
if err != nil {
return err
}
// update new vdb information after re-ip
httpsGetNodesInfoOp, err := makeHTTPSGetNodesInfoOp(options.DBName, options.Hosts,
options.usePassword, options.UserName, options.Password, vdb, true, startNodeInfo.Sandbox)
options.usePassword, options.UserName, options.Password, vdb, options.usePassword, startNodeInfo.Sandbox)
if err != nil {
return err
}
Expand Down
2 changes: 1 addition & 1 deletion vclusterops/start_subcluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func (options *VStartScOptions) validateParseOptions(logger vlog.Printer) error
return err
}

// batch 2: validate eon params
// batch 2: validate eon parameters
err = options.validateEonOptions()
if err != nil {
return err
Expand Down

0 comments on commit d2e515d

Please sign in to comment.