mirror of
https://github.com/ceph/ceph
synced 2025-01-19 17:41:39 +00:00
Merge pull request #15890 from tchaikov/wip-19741
osdc/Objecter: release message if it's not handled Reviewed-by: Josh Durgin <jdurgin@redhat.com>
This commit is contained in:
commit
82fcdd9175
@ -60,7 +60,7 @@ void ceph::crypto::init(CephContext *cct)
|
||||
memset(&init_params, 0, sizeof(init_params));
|
||||
init_params.length = sizeof(init_params);
|
||||
|
||||
uint32_t flags = NSS_INIT_READONLY;
|
||||
uint32_t flags = (NSS_INIT_READONLY | NSS_INIT_PK11RELOAD);
|
||||
if (cct->_conf->nss_db_path.empty()) {
|
||||
flags |= (NSS_INIT_NOCERTDB | NSS_INIT_NOMODDB);
|
||||
}
|
||||
|
@ -2083,7 +2083,9 @@ private:
|
||||
}
|
||||
}
|
||||
void ms_fast_dispatch(Message *m) override {
|
||||
ms_dispatch(m);
|
||||
if (!ms_dispatch(m)) {
|
||||
m->put();
|
||||
}
|
||||
}
|
||||
|
||||
void handle_osd_op_reply(class MOSDOpReply *m);
|
||||
|
Loading…
Reference in New Issue
Block a user