]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
auth/AuthRegistry: remove experimental flag for 'secure' mode
authorSage Weil <sage@redhat.com>
Sat, 16 Mar 2019 20:55:01 +0000 (15:55 -0500)
committerSage Weil <sage@redhat.com>
Fri, 19 Jul 2019 18:09:50 +0000 (13:09 -0500)
Signed-off-by: Sage Weil <sage@redhat.com>
(cherry picked from commit ac3abbef48168a97a7374cc10fa3dc1c78123a98)

src/auth/AuthRegistry.cc

index 64ccd60d99ef9ff5ce92fc45d1b6898b539db780..241db4a9c733fd46004bed586069474acf68cd39 100644 (file)
@@ -99,9 +99,7 @@ void AuthRegistry::_parse_mode_list(const string& s,
     if (i == "crc") {
       v->push_back(CEPH_CON_MODE_CRC);
     } else if (i == "secure") {
-      if (cct->check_experimental_feature_enabled("ms-mode-secure")) {
-       v->push_back(CEPH_CON_MODE_SECURE);
-      }
+      v->push_back(CEPH_CON_MODE_SECURE);
     } else {
       lderr(cct) << "WARNING: unknown connection mode " << i << dendl;
     }