Skip to content

Commit 390bc76

Browse files
authored
Merge pull request #62 from belltoy/fix/retry-index
Fix next index in retry connect_one
2 parents 66a2740 + a09f049 commit 390bc76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/eetcd_conn.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ connect_one(Index, Retry, Data, Len) ->
224224
{error, Reason} ->
225225
?LOG_WARNING("~p failed to connect ETCD host: ~p ~p",
226226
[Name, Host, Reason]),
227-
NewIndex = (Index + 1) rem Len + 1,
227+
NewIndex = Index rem Len + 1,
228228
connect_one(NewIndex, Retry - 1, Data, Len)
229229
end
230230
end.

0 commit comments

Comments
 (0)