]> sourceware.org Git - lvm2.git/commitdiff
I saw this in a bug report:
authorJonathan Earl Brassow <jbrassow@redhat.com>
Wed, 14 Oct 2009 14:55:44 +0000 (14:55 +0000)
committerJonathan Earl Brassow <jbrassow@redhat.com>
Wed, 14 Oct 2009 14:55:44 +0000 (14:55 +0000)
[root@xxxx-01 ~]# lvconvert -m 1 --corelog VG/cmirror
  Unable to convert the log of inactive cluster mirror cmirror

I've tried to clean-up the message a little more, so the name
of the mirror stands out more while preserving the sense that
it's not a problem with the specific device, but the fact that
it is inactive that is causing the problem.

New msg:
  Unable to convert the log of an inactive cluster mirror, cmirror

lib/metadata/mirror.c

index 4edb5325d2f51161b88aa6c99ee4e70990c5d6e3..ff1ecb0fe247b522545836264b677768a46883e7 100644 (file)
@@ -1228,8 +1228,8 @@ int remove_mirror_log(struct cmd_context *cmd,
                        return 0;
                }
        } else if (vg_is_clustered(vg)) {
-               log_error("Unable to convert the log of inactive "
-                         "cluster mirror %s", lv->name);
+               log_error("Unable to convert the log of an inactive "
+                         "cluster mirror, %s", lv->name);
                return 0;
        } else if (yes_no_prompt("Full resync required to convert "
                                 "inactive mirror %s to core log. "
This page took 0.050332 seconds and 5 git commands to generate.