Skip to content

Commit 2d75d7e

Browse files
kjnilssonmergify[bot]
authored andcommitted
Ct helpers: add "** killed" to the defaul log crash ignore list.
Exits the with reason "killed" only occurs "naturally" in OTP when a supervisor tries to shut a child down and it times out. It is used for failure simulation in tests quite frequently however. (cherry picked from commit d6865a6)
1 parent c434963 commit 2d75d7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/rabbitmq_ct_helpers/src/rabbit_ct_broker_helpers.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1171,7 +1171,7 @@ stop_rabbitmq_nodes(Config) ->
11711171
case FindCrashes of
11721172
true ->
11731173
%% TODO: Make the ignore list configurable.
1174-
IgnoredCrashes0 = ["** force_vhost_failure"],
1174+
IgnoredCrashes0 = ["** force_vhost_failure", "** killed"],
11751175
case rabbit_ct_helpers:get_config(Config, ignored_crashes) of
11761176
undefined ->
11771177
find_crashes_in_logs(NodeConfigs, IgnoredCrashes0);

0 commit comments

Comments
 (0)