diff options
| author | Shwetha K Acharya <sacharya@redhat.com> | 2019-06-03 18:05:24 +0530 | 
|---|---|---|
| committer | Shwetha K Acharya <sacharya@redhat.com> | 2019-06-12 21:38:19 +0530 | 
| commit | 4d51b878c9c41e81f965569a4fe19a95a0a42c25 (patch) | |
| tree | c8b3f48ef5fcd0bcbe85bec7f633d00f605a36c0 /cli | |
| parent | 582f91fcad42b6b7da653d2a587d196a7a1e0204 (diff) | |
cli: Remove-brick warning seems unnecessary
As force-migration option is disabled by default,
the warning seems unnessary.
Rephrased the warning to make best sense out of it.
fixes: bz#1712668
Change-Id: Ia18c3c5e7b3fec808fce2194ca0504a837708822
Signed-off-by: Shwetha K Acharya <sacharya@redhat.com>
Diffstat (limited to 'cli')
| -rw-r--r-- | cli/src/cli-cmd-volume.c | 17 | 
1 files changed, 9 insertions, 8 deletions
diff --git a/cli/src/cli-cmd-volume.c b/cli/src/cli-cmd-volume.c index 3b38e55bb3b..713a047dd0b 100644 --- a/cli/src/cli-cmd-volume.c +++ b/cli/src/cli-cmd-volume.c @@ -1760,14 +1760,15 @@ cli_cmd_volume_remove_brick_cbk(struct cli_state *state,              " on the volume.\nDo you want to continue?";      } else if (command == GF_OP_CMD_START) {          question = -            "Running remove-brick with cluster.force-migration" -            " enabled can result in data corruption. It is safer" -            " to disable this option so that files that receive " -            "writes during migration are not migrated.\nFiles " -            "that are not migrated can then be manually copied " -            "after the remove-brick commit operation.\nDo you " -            "want to continue with your current " -            "cluster.force-migration settings?"; +            "It is recommended that remove-brick be run with" +            " cluster.force-migration option disabled to prevent" +            " possible data corruption. Doing so will ensure that" +            " files that receive writes during migration will not" +            " be migrated and will need to be manually copied" +            " after the remove-brick commit operation. Please" +            " check the value of the option and update accordingly." +            " \nDo you want to continue with your current" +            " cluster.force-migration settings?";      }      if (!brick_count) {  | 
