Skip to content

Commit d6865a6

Browse files
committed
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.
1 parent 289da1d commit d6865a6

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
@@ -1206,7 +1206,7 @@ stop_rabbitmq_nodes(Config) ->
12061206
case FindCrashes of
12071207
true ->
12081208
%% TODO: Make the ignore list configurable.
1209-
IgnoredCrashes0 = ["** force_vhost_failure"],
1209+
IgnoredCrashes0 = ["** force_vhost_failure", "** killed"],
12101210
case rabbit_ct_helpers:get_config(Config, ignored_crashes) of
12111211
undefined ->
12121212
find_crashes_in_logs(NodeConfigs, IgnoredCrashes0);

0 commit comments

Comments
 (0)