Skip to content

Commit

Permalink
Merge pull request #10036 from rabbitmq/mergify/bp/v3.12.x/pr-10019
Browse files Browse the repository at this point in the history
gen_server2: Fix return value of `system_code_change/4` (backport #10019)
  • Loading branch information
dumbbell authored Dec 4, 2023
2 parents 741fd43 + c6a515b commit 09b0e0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/rabbit_common/src/gen_server2.erl
Original file line number Diff line number Diff line change
Expand Up @@ -1113,7 +1113,7 @@ system_code_change(GS2State = #gs2_state { mod = Mod,
{ok, NewState} ->
NewGS2State = find_prioritisers(
GS2State #gs2_state { state = NewState }),
{ok, [NewGS2State]};
{ok, NewGS2State};
Else ->
Else
end.
Expand Down

0 comments on commit 09b0e0d

Please sign in to comment.