From 596f05f981e861455e1c2b140a6530242774f4b4 Mon Sep 17 00:00:00 2001 From: Thales Macedo Garitezi Date: Tue, 30 May 2023 15:48:48 -0300 Subject: [PATCH] test(channel): attempt to reduce test flakiness https://github.com/emqx/emqx/actions/runs/5124277038/jobs/9217362541?pr=10886#step:5:1582 ``` %%% emqx_channel_SUITE ==> t_handle_kicked_publish_will_msg: FAILED %%% emqx_channel_SUITE ==> will_message_not_published ``` --- apps/emqx/test/emqx_channel_SUITE.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/emqx/test/emqx_channel_SUITE.erl b/apps/emqx/test/emqx_channel_SUITE.erl index 9f73ab163..e77bef90c 100644 --- a/apps/emqx/test/emqx_channel_SUITE.erl +++ b/apps/emqx/test/emqx_channel_SUITE.erl @@ -892,7 +892,7 @@ t_handle_kicked_publish_will_msg(_) -> ), receive {pub, Msg} -> ok - after 1_000 -> exit(will_message_not_published) + after 10_000 -> exit(will_message_not_published) end. t_handle_call_discard(_) ->