]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mon: AuthMonitor: fix some >80 columns debug strings
authorJoao Eduardo Luis <joao.luis@inktank.com>
Tue, 6 Aug 2013 21:50:09 +0000 (14:50 -0700)
committerJoao Eduardo Luis <joao.luis@inktank.com>
Thu, 15 Aug 2013 22:32:32 +0000 (15:32 -0700)
Give AuthMonitor a new look.  She sure deserves it.

Signed-off-by: Joao Eduardo Luis <joao.luis@inktank.com>
src/mon/AuthMonitor.cc

index ebb5194b05ab27a32cafe4712bc3300b460f17e8..9f8855894425bd40c7175bb509dd9bc2992ff8c3 100644 (file)
@@ -393,13 +393,19 @@ bool AuthMonitor::prep_auth(MAuth *m, bool paxos_writable)
          entity_name.get_type() == CEPH_ENTITY_TYPE_MDS) {
        if (g_conf->cephx_cluster_require_signatures ||
            g_conf->cephx_require_signatures) {
-         dout(1) << m->get_source_inst() << " supports cephx but not signatures and 'cephx [cluster] require signatures = true'; disallowing cephx" << dendl;
+         dout(1) << m->get_source_inst()
+                  << " supports cephx but not signatures and"
+                  << " 'cephx [cluster] require signatures = true';"
+                  << " disallowing cephx" << dendl;
          supported.erase(CEPH_AUTH_CEPHX);
        }
       } else {
        if (g_conf->cephx_service_require_signatures ||
            g_conf->cephx_require_signatures) {
-         dout(1) << m->get_source_inst() << " supports cephx but not signatures and 'cephx [service] require signatures = true'; disallowing cephx" << dendl;
+         dout(1) << m->get_source_inst()
+                  << " supports cephx but not signatures and"
+                  << " 'cephx [service] require signatures = true';"
+                  << " disallowing cephx" << dendl;
          supported.erase(CEPH_AUTH_CEPHX);
        }
       }