Skip to content

Commit

Permalink
fixup! fixup! kernel: Fix AC to respond to calls while terminating
Browse files Browse the repository at this point in the history
  • Loading branch information
garazdawi committed Apr 29, 2024
1 parent 5036686 commit 81d757b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions lib/sasl/test/release_handler_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -2388,7 +2388,10 @@ wait_nodes_up(Nodes, Tag, Apps, N) ->
fun(NodeInfo={Node,OldInitPid}, A) ->
case rpc:call(Node, application, which_applications, []) of
{badrpc, nodedown} ->
test_server:format( " ~p = {badarg, nodedown}",[Node]),
test_server:format( " ~p = {badrpc, nodedown}",[Node]),
[NodeInfo | A];
{badrpc, {'EXIT',terminating}} ->
test_server:format( " ~p = {badrpc, {'EXIT',terminating}}",[Node]),
[NodeInfo | A];
List when is_list(List)->
test_server:format( " ~p = [~p]",[Node, List]),
Expand All @@ -2406,7 +2409,7 @@ wait_nodes_up(Nodes, Tag, Apps, N) ->
false ->
[NodeInfo | A]
end
end
end
end,
Pang = lists:foldl(Fun,[],Nodes),
case Pang of
Expand Down

0 comments on commit 81d757b

Please sign in to comment.