]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mon/AuthMonitor: fix really long line length
authorJoao Eduardo Luis <joao@suse.de>
Fri, 23 Feb 2018 18:33:15 +0000 (18:33 +0000)
committerJoao Eduardo Luis <joao@suse.de>
Fri, 6 Apr 2018 03:53:13 +0000 (04:53 +0100)
Signed-off-by: Joao Eduardo Luis <joao@suse.de>
src/mon/AuthMonitor.cc

index 8b7210e63beeefbf3bd2d1f8567ef029aadbb7ee..280d742a7fb1ed5134880c955551c4d2de6a727f 100644 (file)
@@ -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;
        }