Skip to content

Commit

Permalink
Shovel dynamic_SUITE: ignore one more harmless exception
Browse files Browse the repository at this point in the history
when a socket is closed before a writer tries
to flush it.
  • Loading branch information
michaelklishin committed Jul 24, 2024
1 parent 61c9cf2 commit 5161aea
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions deps/rabbitmq_shovel/test/dynamic_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,10 @@ init_per_suite(Config) ->
rabbit_ct_helpers:log_environment(),
Config1 = rabbit_ct_helpers:set_config(Config, [
{rmq_nodename_suffix, ?MODULE},
{ignored_crashes,
["server_initiated_close,404"]}
{ignored_crashes, [
"server_initiated_close,404",
"writer,send_failed,closed"
]}
]),
rabbit_ct_helpers:run_setup_steps(Config1,
rabbit_ct_broker_helpers:setup_steps() ++
Expand Down

0 comments on commit 5161aea

Please sign in to comment.