From 04ae6e7a527a0023c4061f7e78e9d444b78691a9 Mon Sep 17 00:00:00 2001 From: Emmanuel Keller Date: Fri, 23 Aug 2024 10:52:42 +0100 Subject: [PATCH] build fix (#4591) --- core/src/kvs/ds.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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