Debug OP_STABLE so the basic case passes without problem

This commit is contained in:
Vitaliy Filippov
2019-11-21 02:09:18 +03:00
parent 299b7288d5
commit 2b12428cb1
6 changed files with 56 additions and 17 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ int blockstore::dequeue_stable(blockstore_operation *op)
if (clean_it == clean_db.end() || clean_it->second.version < v->version)
{
// No such object version
op->retval = EINVAL;
op->retval = -EINVAL;
op->callback(op);
return 1;
}