Skip to content

Commit

Permalink
Fix error in DR help (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
posriniv authored Oct 31, 2024
1 parent 5456807 commit c76cd49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/dr/create_dr.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func init() {
DrCmd.AddCommand(createDrCmd)
createDrCmd.Flags().String("dr-name", "", "[REQUIRED] Name of the DR configuration.")
createDrCmd.MarkFlagRequired("dr-name")
createDrCmd.Flags().String("source-cluster-name", "", "[REQUIRED] Target cluster in the DR configuration.")
createDrCmd.Flags().String("source-cluster-name", "", "[REQUIRED] Source cluster in the DR configuration.")
createDrCmd.MarkFlagRequired("source-cluster-name")
createDrCmd.Flags().String("target-cluster-name", "", "[REQUIRED] Target cluster in the DR configuration.")
createDrCmd.MarkFlagRequired("target-cluster-name")
Expand Down

0 comments on commit c76cd49

Please sign in to comment.