Skip to content

Commit e0d636d

Browse files
committed
Fix loading eredis and poolboy when compiled with rebar3
eredis has to be loaded before eredis_cluster starts. poolboy has to be started as well. mix.exs lists eredis and poolboy among applications. The rebar3 equivalent is adding eredis and poolboy to applications in eredis_cluster.app.src.
1 parent c29efc4 commit e0d636d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/eredis_cluster.app.src

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
{registered, []},
66
{applications, [
77
kernel,
8-
stdlib
8+
stdlib,
9+
eredis,
10+
poolboy
911
]},
1012
{mod, {eredis_cluster, []}},
1113
{env, []}

0 commit comments

Comments
 (0)