Skip to content

Commit f771754

Browse files
author
Loïc Hoguin
committed
Fix compilation error
1 parent adda481 commit f771754

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/rabbit/src/rabbit_msg_store_gc.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ handle_cast({truncate, File, TruncateSize, ThresholdTimestamp}, State = #state{p
8282
handle_cast({delete, File}, State = #state{pending = Pending}) ->
8383
%% We drop any pending action because deletion takes precedence over truncation.
8484
State1 = State#state{pending = maps:remove(File, Pending)},
85-
{noreply, attempt_action(delete, [File], State1), hibernate};
85+
{noreply, attempt_action(delete, [File], State1), hibernate}.
8686

8787
%% Run all pending actions.
8888
handle_info({timeout, TimerRef, do_pending},

0 commit comments

Comments
 (0)