From: Casey Bodley Date: Wed, 24 Apr 2024 13:46:28 +0000 (-0400) Subject: rgw: don't print error when ldap isn't configured X-Git-Tag: v20.0.0~1983^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3dd8500596f01df131b41aa7b7851e12406a899b;p=ceph.git rgw: don't print error when ldap isn't configured > LDAP not started since no server URIs were provided in the configuration. lack of ldap configuration is not an error, it's the default Signed-off-by: Casey Bodley --- diff --git a/src/rgw/rgw_appmain.cc b/src/rgw/rgw_appmain.cc index 6b832fb4328..8266985ece4 100644 --- a/src/rgw/rgw_appmain.cc +++ b/src/rgw/rgw_appmain.cc @@ -384,7 +384,6 @@ void rgw::AppMain::init_ldap() std::string ldap_bindpw = parse_rgw_ldap_bindpw(cct); if (ldap_uri.empty()) { - derr << "LDAP not started since no server URIs were provided in the configuration." << dendl; return; }