diff --git a/core/src/kvs/ds.rs b/core/src/kvs/ds.rs index ab225eda..ba06d195 100644 --- a/core/src/kvs/ds.rs +++ b/core/src/kvs/ds.rs @@ -549,7 +549,7 @@ impl Datastore { // Convert the version to binary let bytes: Vec = val.into(); // Attempt to set the current version in storage - catch!(txn, txn.set(key, bytes)); + catch!(txn, txn.set(key, bytes, None)); // We set the version, so commit the transaction catch!(txn, txn.commit()); // Return the current version