9ae3f9
From 704bf84d432e1eea1534e35ee27d4116a7273146 Mon Sep 17 00:00:00 2001
9ae3f9
From: Sanju Rakonde <srakonde@redhat.com>
9ae3f9
Date: Thu, 4 Jun 2020 16:15:35 +0530
9ae3f9
Subject: [PATCH 401/449] cli: change the warning message
9ae3f9
9ae3f9
while creating the replica 2 volume or converting
9ae3f9
a volume to replica 2 volume, we issue a warning
9ae3f9
saying "replica 2 volumes are prone to split brain".
9ae3f9
As the support for replica 2 volumes has been deprecated,
9ae3f9
warning message should be changed accordingly to reflect
9ae3f9
the same.
9ae3f9
9ae3f9
Label: DOWNSTREAM ONLY
9ae3f9
9ae3f9
BUG: 1763124
9ae3f9
Change-Id: If55e5412cda2e4a21a6359492d8d704dd702530d
9ae3f9
Signed-off-by: Sanju Rakonde <srakonde@redhat.com>
9ae3f9
Reviewed-on: https://code.engineering.redhat.com/gerrit/202348
9ae3f9
Tested-by: RHGS Build Bot <nigelb@redhat.com>
9ae3f9
Reviewed-by: Mohit Agrawal <moagrawa@redhat.com>
9ae3f9
Reviewed-by: Ravishankar Narayanankutty <ravishankar@redhat.com>
9ae3f9
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
9ae3f9
---
9ae3f9
 cli/src/cli-cmd-parser.c | 16 ++++++++--------
9ae3f9
 1 file changed, 8 insertions(+), 8 deletions(-)
9ae3f9
9ae3f9
diff --git a/cli/src/cli-cmd-parser.c b/cli/src/cli-cmd-parser.c
9ae3f9
index 5e7ce53..7446b95 100644
9ae3f9
--- a/cli/src/cli-cmd-parser.c
9ae3f9
+++ b/cli/src/cli-cmd-parser.c
9ae3f9
@@ -603,8 +603,8 @@ cli_cmd_volume_create_parse(struct cli_state *state, const char **words,
9ae3f9
             if (replica_count == 2) {
9ae3f9
                 if (strcmp(words[wordcount - 1], "force")) {
9ae3f9
                     question =
9ae3f9
-                        "Replica 2 volumes are prone"
9ae3f9
-                        " to split-brain. Use "
9ae3f9
+                        "Support for replica 2 volumes stands deprecated as "
9ae3f9
+                        "they are prone to split-brain. Use "
9ae3f9
                         "Arbiter or Replica 3 to "
9ae3f9
                         "avoid this.\n"
9ae3f9
                         "Do you still want to "
9ae3f9
@@ -1817,9 +1817,9 @@ cli_cmd_volume_add_brick_parse(struct cli_state *state, const char **words,
9ae3f9
         if (count == 2) {
9ae3f9
             if (strcmp(words[wordcount - 1], "force")) {
9ae3f9
                 question =
9ae3f9
-                    "Replica 2 volumes are prone to "
9ae3f9
-                    "split-brain. Use Arbiter or "
9ae3f9
-                    "Replica 3 to avaoid this. See: "
9ae3f9
+                    "Support for replica 2 volumes stands deprecated as they "
9ae3f9
+                    "are prone to split-brain. Use Arbiter or "
9ae3f9
+                    "Replica 3 to avoid this. See: "
9ae3f9
                     "http://docs.gluster.org/en/latest/Administrator%20Guide/"
9ae3f9
                     "Split%20brain%20and%20ways%20to%20deal%20with%20it/."
9ae3f9
                     "\nDo you still want to continue?\n";
9ae3f9
@@ -2098,9 +2098,9 @@ cli_cmd_volume_remove_brick_parse(struct cli_state *state, const char **words,
9ae3f9
         if (count == 2) {
9ae3f9
             if (strcmp(words[wordcount - 1], "force")) {
9ae3f9
                 ques =
9ae3f9
-                    "Replica 2 volumes are prone to "
9ae3f9
-                    "split-brain. Use Arbiter or Replica 3 "
9ae3f9
-                    "to avaoid this. See: "
9ae3f9
+                    "Support for replica 2 volumes stands deprecated as they "
9ae3f9
+                    "are prone to split-brain. Use Arbiter or Replica 3 "
9ae3f9
+                    "to avoid this. See: "
9ae3f9
                     "http://docs.gluster.org/en/latest/Administrator%20Guide/"
9ae3f9
                     "Split%20brain%20and%20ways%20to%20deal%20with%20it/."
9ae3f9
                     "\nDo you still want to continue?\n";
9ae3f9
-- 
9ae3f9
1.8.3.1
9ae3f9