]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mon/OSDMonitor: fix long line
authorSage Weil <sage@redhat.com>
Wed, 18 Apr 2018 17:20:58 +0000 (12:20 -0500)
committerSage Weil <sage@redhat.com>
Fri, 7 Sep 2018 17:08:40 +0000 (12:08 -0500)
Signed-off-by: Sage Weil <sage@redhat.com>
src/mon/OSDMonitor.cc

index 92618e235b2e891145bf72c70363ee2fb3e9fe99..e9318a1bb237ecab8798b9bd2fa7df0ece72a1e1 100644 (file)
@@ -11996,7 +11996,11 @@ bool OSDMonitor::prepare_command_impl(MonOpRequestRef op,
     string sure;
     cmd_getval(cct, cmdmap, "sure", sure);
     if (sure != "--yes-i-really-mean-it") {
-      ss << "This command will recreate a lost (as in data lost) PG with data in it, such that the cluster will give up ever trying to recover the lost data.  Do this only if you are certain that all copies of the PG are in fact lost and you are willing to accept that the data is permanently destroyed.  Pass --yes-i-really-mean-it to proceed.";
+      ss << "This command will recreate a lost (as in data lost) PG with data in it, such "
+        << "that the cluster will give up ever trying to recover the lost data.  Do this "
+        << "only if you are certain that all copies of the PG are in fact lost and you are "
+        << "willing to accept that the data is permanently destroyed.  Pass "
+        << "--yes-i-really-mean-it to proceed.";
       err = -EPERM;
       goto reply;
     }