Skip to content

Commit c1ba7c9

Browse files
committed
Fix indentation of maybe_start_dlx_worker/1 tail call
The tail call to `maybe_start_dlx_worker/3` was flush at column 0, making it read like a function head rather than the function body.
1 parent 39134d4 commit c1ba7c9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

deps/rabbit/src/rabbit_fifo.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4001,7 +4001,7 @@ maybe_start_dlx_worker(RaAux) ->
40014001
#?STATE{dlx = DlxState,
40024002
cfg = #cfg{dead_letter_handler = DLH,
40034003
resource = QRes}} = ra_aux:machine_state(RaAux),
4004-
maybe_start_dlx_worker(DLH, QRes, DlxState).
4004+
maybe_start_dlx_worker(DLH, QRes, DlxState).
40054005

40064006
maybe_start_dlx_worker(at_least_once, QRes, DlxState) ->
40074007
ensure_dlx_worker_started(QRes, DlxState);

0 commit comments

Comments
 (0)