From 6d37dc4dd6efa95d687ef726226a7a18e86b0f25 Mon Sep 17 00:00:00 2001 From: Alexander Afanasyev Date: Wed, 23 Feb 2022 11:50:39 +0300 Subject: [PATCH] [DT-496]: fix Konvex.Implementation.Riak.AnyBucketWithKeyValueAggregate.get_all_keys/0 return value bug --- .../implementation/riak/any_bucket_with_key_value_aggregate.ex | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/konvex/implementation/riak/any_bucket_with_key_value_aggregate.ex b/lib/konvex/implementation/riak/any_bucket_with_key_value_aggregate.ex index 4520d42..61f1e0b 100644 --- a/lib/konvex/implementation/riak/any_bucket_with_key_value_aggregate.ex +++ b/lib/konvex/implementation/riak/any_bucket_with_key_value_aggregate.ex @@ -80,6 +80,7 @@ defmodule Konvex.Implementation.Riak.AnyBucketWithKeyValueAggregate do def get_all_keys() do get_all_any_key_values() |> Map.keys() + |> MapSet.new() end @impl Konvex.Ability.ToPutAnyValue