From: Sage Weil Date: Wed, 18 Apr 2018 17:20:58 +0000 (-0500) Subject: mon/OSDMonitor: fix long line X-Git-Tag: v14.0.1~371^2~31 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=ba7f9af21cb68f894c12c73aa968748d7c2adb72;p=ceph.git mon/OSDMonitor: fix long line Signed-off-by: Sage Weil --- diff --git a/src/mon/OSDMonitor.cc b/src/mon/OSDMonitor.cc index 92618e235b2e8..e9318a1bb237e 100644 --- a/src/mon/OSDMonitor.cc +++ b/src/mon/OSDMonitor.cc @@ -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; }