From: Matt Benjamin Date: Wed, 18 Jan 2017 04:27:41 +0000 (-0500) Subject: librgw: remove call to crypto::shutdown X-Git-Tag: v12.0.0~143^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=4299bfcc7328afa69ea9eb90057058ed54447298;p=ceph.git librgw: remove call to crypto::shutdown The call is cognate to removed code in radosgw, and triggers an assert that the crypto module has already been shutdown. With this and preceding changes, I see clean shutdown on abnormal termination of nfs-ganesha during startup. Fixes: http://tracker.ceph.com/issues/18585 Signed-off-by: Matt Benjamin --- diff --git a/src/rgw/librgw.cc b/src/rgw/librgw.cc index 89f71ee2565f..aed20dd21b35 100644 --- a/src/rgw/librgw.cc +++ b/src/rgw/librgw.cc @@ -561,8 +561,6 @@ namespace rgw { dout(1) << "final shutdown" << dendl; cct.reset(); - ceph::crypto::shutdown(); - return 0; } /* RGWLib::stop() */