From f771754afbb2ab15d3f02936dc6e576ecbc6eefc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Fri, 8 Mar 2024 14:09:31 +0100 Subject: [PATCH] Fix compilation error --- deps/rabbit/src/rabbit_msg_store_gc.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/rabbit/src/rabbit_msg_store_gc.erl b/deps/rabbit/src/rabbit_msg_store_gc.erl index 11a17417eae6..8ede8c1a3f97 100644 --- a/deps/rabbit/src/rabbit_msg_store_gc.erl +++ b/deps/rabbit/src/rabbit_msg_store_gc.erl @@ -82,7 +82,7 @@ handle_cast({truncate, File, TruncateSize, ThresholdTimestamp}, State = #state{p handle_cast({delete, File}, State = #state{pending = Pending}) -> %% We drop any pending action because deletion takes precedence over truncation. State1 = State#state{pending = maps:remove(File, Pending)}, - {noreply, attempt_action(delete, [File], State1), hibernate}; + {noreply, attempt_action(delete, [File], State1), hibernate}. %% Run all pending actions. handle_info({timeout, TimerRef, do_pending},