From 23a32724e811088e793b019036421e3cdae7b69e Mon Sep 17 00:00:00 2001 From: absc Date: Sat, 12 Oct 2024 21:55:28 +0000 Subject: [PATCH] Corrected missing "ok". --- storage/src/storage.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/src/storage.erl b/storage/src/storage.erl index 5c7705f..19da1d8 100644 --- a/storage/src/storage.erl +++ b/storage/src/storage.erl @@ -709,7 +709,7 @@ handle_call({read, Bucket, Key}, _From, State) -> mnesia:read(Bucket, Key) end, - {reply, mnesia:activity(transaction, F, [], mnesia_frag), State}; + {reply, {ok, mnesia:activity(transaction, F, [], mnesia_frag)}, State}; % % Write callbacks.