Handle ENOENT from add_commit

This commit is contained in:
Vitaliy Filippov
2026-05-18 01:17:56 +03:00
parent 89df98ee08
commit 98203568a8
+6
View File
@@ -37,6 +37,12 @@ int blockstore_impl_t::dequeue_stable(blockstore_op_t *op)
FINISH_OP(op);
return 2;
}
if (res == ENOENT)
{
op->retval = -ENOENT;
FINISH_OP(op);
return 2;
}
if (res == ENOSPC)
{
if (!heap->get_to_compact_count())