From 7590dea77774d02760b386ab2611e5c8b1c5bf2f Mon Sep 17 00:00:00 2001 From: Christopher Date: Sat, 7 Mar 2020 09:20:43 -0600 Subject: [PATCH] get values in stream --- lib/cluster_kv/ring.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cluster_kv/ring.ex b/lib/cluster_kv/ring.ex index 8c26f8b..104e5e9 100644 --- a/lib/cluster_kv/ring.ex +++ b/lib/cluster_kv/ring.ex @@ -225,7 +225,7 @@ defmodule ClusterKV.Ring do _ -> true end) |> Stream.map(fn key -> - {key, DB.get(db, key)} + DB.get(db, key) end) end -- 2.45.3