From ba7f9af21cb68f894c12c73aa968748d7c2adb72 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Wed, 18 Apr 2018 12:20:58 -0500 Subject: [PATCH] mon/OSDMonitor: fix long line Signed-off-by: Sage Weil --- src/mon/OSDMonitor.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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; } -- 2.39.5