]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
AsyncMessenger: remove experiment feature 7820/head
authorHaomai Wang <haomai@xsky.com>
Fri, 26 Feb 2016 14:55:36 +0000 (22:55 +0800)
committerHaomai Wang <haomai@xsky.com>
Fri, 26 Feb 2016 14:55:36 +0000 (22:55 +0800)
Signed-off-by: Haomai Wang <haomai@xsky.com>
src/msg/Messenger.cc

index 1cf6761630bc53105d6efc5b0a1df3614966eba0..edf7712727b9392fa02ec2983008d9dd2318e766 100644 (file)
@@ -28,8 +28,7 @@ Messenger *Messenger::create(CephContext *cct, const string &type,
     r = rand() % 2; // random does not include xio
   if (r == 0 || type == "simple")
     return new SimpleMessenger(cct, name, lname, nonce, features);
-  else if ((r == 1 || type == "async") &&
-          cct->check_experimental_feature_enabled("ms-type-async"))
+  else if (r == 1 || type == "async")
     return new AsyncMessenger(cct, name, lname, nonce, features);
 #ifdef HAVE_XIO
   else if ((type == "xio") &&