From: John Spray Date: Wed, 14 Nov 2018 19:13:39 +0000 (-0500) Subject: os/memstore: ignore OP_COLL_SET_BITS X-Git-Tag: v14.1.0~582^2~22 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=1d9ea303bb074b122335b754d14022b8a1592140;p=ceph-ci.git os/memstore: ignore OP_COLL_SET_BITS ...rather than crashing out on it. Signed-off-by: John Spray --- diff --git a/src/os/memstore/MemStore.cc b/src/os/memstore/MemStore.cc index ef203881607..ea87c80cc84 100644 --- a/src/os/memstore/MemStore.cc +++ b/src/os/memstore/MemStore.cc @@ -960,6 +960,12 @@ void MemStore::_do_transaction(Transaction& t) } break; + case Transaction::OP_COLL_SET_BITS: + { + r = 0; + } + break; + default: derr << "bad op " << op->op << dendl; ceph_abort();