Skip to content

Commit 6c337ae

Browse files
committed
Fix conflict
1 parent 9971fc7 commit 6c337ae

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

deps/rabbit/src/rabbit_fifo_dlx_client.erl

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,10 @@ process_command(Cmd, #state{leader = Leader} = State, Tries) ->
4646
case ra:process_command(Leader, Cmd, 60_000) of
4747
{ok, ok, Leader} ->
4848
{ok, State#state{leader = Leader}};
49-
<<<<<<< HEAD
50-
{ok, ok, L} ->
51-
rabbit_log:warning("Failed to process command ~p on quorum queue leader ~p because actual leader is ~p.",
52-
[Cmd, Leader, L]),
53-
{error, ra_command_failed};
54-
=======
5549
{ok, ok, NonLocalLeader} ->
56-
rabbit_log:warning("Failed to process command ~tp on quorum queue leader ~tp because actual leader is ~tp.",
50+
rabbit_log:warning("Failed to process command ~p on quorum queue leader ~p because actual leader is ~p.",
5751
[Cmd, Leader, NonLocalLeader]),
5852
{error, non_local_leader};
59-
>>>>>>> 416211079e (Do not restart DLX worker if leader is non-local)
6053
Err ->
6154
rabbit_log:warning("Failed to process command ~p on quorum queue leader ~p: ~p~n"
6255
"Trying ~b more time(s)...",

0 commit comments

Comments
 (0)