Commit a61ab03a authored by Marc Vef's avatar Marc Vef
Browse files

RocksDB backend: Ignore not found on deletion

parent 5eca81f9
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -145,7 +145,7 @@ void
RocksDBBackend::remove_impl(const std::string& key) {

    auto s = db_->Delete(write_opts_, key);
    if(!s.ok()) {
    if(!s.ok() && !s.IsNotFound()) {
        throw_status_excpt(s);
    }
}