Skip to content

Commit

Permalink
address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
posriniv committed Oct 22, 2024
1 parent 2576656 commit 86eca6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/cluster/dr/switchover_dr.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ var switchoverDrCmd = &cobra.Command{
if returnStatus != "SUCCEEDED" {
logrus.Fatalf("Operation failed with error: %s", returnStatus)
}
fmt.Printf("The switchover for DR %s is successful\n", formatter.Colorize(drName, formatter.GREEN_COLOR))
fmt.Printf("Switchover for DR config %s is successful\n", formatter.Colorize(drName, formatter.GREEN_COLOR))

drGetResp, r, err := authApi.GetXClusterDr(clusterId, drId).Execute()
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion cmd/cluster/dr/update_dr.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ var updateDrCmd = &cobra.Command{
if returnStatus != "SUCCEEDED" {
logrus.Fatalf("Operation failed with error: %s", returnStatus)
}
fmt.Printf("The DR %s has been updated\n", formatter.Colorize(drName, formatter.GREEN_COLOR))
fmt.Printf("DR config %s has been updated\n", formatter.Colorize(drName, formatter.GREEN_COLOR))

drGetResp, r, err := authApi.GetXClusterDr(clusterId, drId).Execute()
if err != nil {
Expand Down

0 comments on commit 86eca6d

Please sign in to comment.