From 1d9ea303bb074b122335b754d14022b8a1592140 Mon Sep 17 00:00:00 2001 From: John Spray Date: Wed, 14 Nov 2018 14:13:39 -0500 Subject: [PATCH] os/memstore: ignore OP_COLL_SET_BITS ...rather than crashing out on it. Signed-off-by: John Spray --- src/os/memstore/MemStore.cc | 6 ++++++ 1 file changed, 6 insertions(+) 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(); -- 2.47.3