From: Joao Eduardo Luis Date: Fri, 23 Feb 2018 18:33:15 +0000 (+0000) Subject: mon/AuthMonitor: fix really long line length X-Git-Tag: v13.1.0~310^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=5e572f40436c6b368796759b73faf3b7291ef70d;p=ceph.git mon/AuthMonitor: fix really long line length Signed-off-by: Joao Eduardo Luis --- diff --git a/src/mon/AuthMonitor.cc b/src/mon/AuthMonitor.cc index 8b7210e63bee..280d742a7fb1 100644 --- a/src/mon/AuthMonitor.cc +++ b/src/mon/AuthMonitor.cc @@ -1334,8 +1334,11 @@ bool AuthMonitor::prepare_command(MonOpRequestRef op) for (const auto &sys_cap : wanted_caps) { if (entity_auth.caps.count(sys_cap.first) == 0 || !entity_auth.caps[sys_cap.first].contents_equal(sys_cap.second)) { - ss << entity << " already has fs capabilities that differ from those supplied. To generate a new auth key for " - << entity << ", first remove " << entity << " from configuration files, execute 'ceph auth rm " << entity << "', then execute this command again."; + ss << entity << " already has fs capabilities that differ from " + << "those supplied. To generate a new auth key for " << entity + << ", first remove " << entity << " from configuration files, " + << "execute 'ceph auth rm " << entity << "', then execute this " + << "command again."; err = -EINVAL; goto done; }