From 11306c7178b70935025329d268e3eacc25939dd6 Mon Sep 17 00:00:00 2001 From: LaunchDarklyReleaseBot <86431345+LaunchDarklyReleaseBot@users.noreply.github.com> Date: Mon, 5 Jun 2023 12:01:55 -0400 Subject: [PATCH] prepare 2.0.4 release (#76) ## [2.0.4] - 2023-06-05 ### Fixed: - Remove error log message associated with debugging redis initialization state. --------- Co-authored-by: zurab-darkly <56062336+zurab-darkly@users.noreply.github.com> Co-authored-by: Ben Woskow <48036130+bwoskow-ld@users.noreply.github.com> Co-authored-by: Joe Cieslik <5600929+torchhound@users.noreply.github.com> Co-authored-by: Zurab Davitiani Co-authored-by: LaunchDarklyCI Co-authored-by: elliot Co-authored-by: elliot Co-authored-by: Elliot <35050275+Apache-HB@users.noreply.github.com> Co-authored-by: Ben Woskow Co-authored-by: LaunchDarklyReleaseBot Co-authored-by: Ryan Lamb <4955475+kinyoklion@users.noreply.github.com> Co-authored-by: Matt Glover Co-authored-by: Molly Co-authored-by: Ben Levy Co-authored-by: Casey Waldren Co-authored-by: Louis Chan --- src/ldclient_storage_redis_server.erl | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ldclient_storage_redis_server.erl b/src/ldclient_storage_redis_server.erl index d528b6e..7c42118 100644 --- a/src/ldclient_storage_redis_server.erl +++ b/src/ldclient_storage_redis_server.erl @@ -321,7 +321,6 @@ set_init(Client, Prefix) -> -spec get_init(Client :: eredis:client(), Prefix :: string()) -> boolean(). get_init(Client, Prefix) -> {ok, Value} = eredis:q(Client, ["GET", lists:concat([Prefix, ":$inited"])]), - error_logger:error_msg("Inited value ~p", [Value]), case Value of undefined -> false; _ -> true