Skip to content

Commit

Permalink
Update elp component on WASERVER:master
Browse files Browse the repository at this point in the history
Differential Revision: D57369226

fbshipit-source-id: 1eb6c0a6955e1e7de06fe8b5677fc4d9d2f69796
  • Loading branch information
ilya-klyuchnikov authored and facebook-github-bot committed May 15, 2024
1 parent 15a738a commit 2734682
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/wa_raft_log.erl
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,6 @@ fold(LogOrView, First, Last, Func, Acc) ->
Acc) ->
{ok, Acc} | wa_raft:error().
fold(#log_view{log = Log, first = LogFirst, last = LogLast}, First, Last, SizeLimit, Func, Acc) ->
% eqwalizer:fixme - min [T166261957]
fold_impl(Log, max(First, LogFirst), min(Last, LogLast), SizeLimit, Func, Acc);
fold(Log, First, Last, SizeLimit, Func, Acc) ->
Provider = provider(Log),
Expand Down Expand Up @@ -443,7 +442,6 @@ fold_impl(Log, First, Last, SizeLimit, Func, AccIn) ->
Acc) ->
{ok, Acc} | wa_raft:error().
fold_terms(#log_view{log = Log, first = LogFirst, last = LogLast}, First, Last, Func, Acc) ->
% eqwalizer:fixme - min [T166261957]
fold_terms_impl(Log, max(First, LogFirst), min(Last, LogLast), Func, Acc);
fold_terms(Log, First, Last, Func, Acc) ->
Provider = provider(Log),
Expand Down

0 comments on commit 2734682

Please sign in to comment.