Skip to content

Commit

Permalink
rolling back eredis, cause the new version doesn't work
Browse files Browse the repository at this point in the history
./rebar3 upgrade eredis
  • Loading branch information
DenysGonchar committed Mar 1, 2021
1 parent 292134e commit e527d96
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion rebar.config
Expand Up @@ -73,7 +73,7 @@
{nkpacket, {git, "https://github.com/michalwski/nkpacket.git", {ref, "f7c5349"}}},
{nksip, {git, "https://github.com/NetComposer/nksip.git", {ref, "1a29ef3"}}},
{amqp_client, "3.8.4"},
{eredis, {git, "https://github.com/Nordix/eredis.git", {tag, "v1.3.2"}}},
{eredis, "1.2.0"},
{gen_fsm_compat, "0.3.0"},
{erlang_pmp, "0.1.1"},
{erl_csv_generator, {git, "https://github.com/aleklisi/erl_csv_generator.git", {branch, master}}},
Expand Down
6 changes: 2 additions & 4 deletions rebar.lock
Expand Up @@ -33,10 +33,7 @@
{ref,"fc165bf4072ecb9ce5648aab86db2baad12122f5"}},
2},
{<<"epgsql">>,{pkg,<<"epgsql">>,<<"4.4.0">>},0},
{<<"eredis">>,
{git,"https://github.com/Nordix/eredis.git",
{ref,"55349601c166a9f737d0fd371ab543ca8c6bf91c"}},
0},
{<<"eredis">>,{pkg,<<"eredis">>,<<"1.2.0">>},0},
{<<"erl_csv_generator">>,
{git,"https://github.com/aleklisi/erl_csv_generator.git",
{ref,"72a61b0f96db46bfb8905e933c8ec11e12cfd21e"}},
Expand Down Expand Up @@ -183,6 +180,7 @@
{<<"credentials_obfuscation">>, <<"65425424414B91F85FEB2C8F7E09AF65E91B6E311842E4CA07F6AABE20F5E58C">>},
{<<"eini">>, <<"EFC9D836E88591A47550BD34CE964E21CA1369F8716B24F73CFEA513FA99F666">>},
{<<"epgsql">>, <<"8FE21C9C6651A4286CF57E33719DF0CF70685879E50EF6B4D0CCD95E5006206D">>},
{<<"eredis">>, <<"0B8E9CFC2C00FA1374CD107EA63B49BE08D933DF2CF175E6A89B73DD9C380DE4">>},
{<<"erlang_pmp">>, <<"42FAA89EAF427B71533444F2B433D0010837636149595658499C356A5A39589B">>},
{<<"erlcloud">>, <<"4DE8DC3CBA64A59D57E4A32606DB6AA5CAC371CA0ADB8361571B2E6A74295A56">>},
{<<"fast_scram">>, <<"1F8F467D34374D00CE4AB8D6F78430EA8ADCCD2DA6D5BA0069B9EA8A1CAC6DE1">>},
Expand Down
2 changes: 1 addition & 1 deletion src/wpool/mongoose_wpool_redis.erl
Expand Up @@ -30,7 +30,7 @@ wpool_spec(WpoolOptsIn, ConnOpts) ->


makeargs(RedisOpts) ->
Host = proplists:get_value(host, RedisOpts, "localhost"),
Host = proplists:get_value(host, RedisOpts, "127.0.0.1"),
Port = proplists:get_value(port, RedisOpts, 6379),
Database = proplists:get_value(database, RedisOpts, 0),
Password = proplists:get_value(password, RedisOpts, ""),
Expand Down

0 comments on commit e527d96

Please sign in to comment.