From 0380475b9544f4797b45b8bcf9817d285731158f Mon Sep 17 00:00:00 2001 From: Joao Eduardo Luis Date: Tue, 6 Aug 2013 14:50:09 -0700 Subject: [PATCH] mon: AuthMonitor: fix some >80 columns debug strings Give AuthMonitor a new look. She sure deserves it. Signed-off-by: Joao Eduardo Luis --- src/mon/AuthMonitor.cc | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/mon/AuthMonitor.cc b/src/mon/AuthMonitor.cc index ebb5194b05ab2..9f8855894425b 100644 --- a/src/mon/AuthMonitor.cc +++ b/src/mon/AuthMonitor.cc @@ -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); } } -- 2.39.5