From 98f947f4f3eb92cff8b0cf8604a992e51c8d194a Mon Sep 17 00:00:00 2001 From: Andrew Mayorov Date: Wed, 15 Nov 2023 22:28:52 +0700 Subject: [PATCH] ci(router): fix flaky testcase --- apps/emqx/test/emqx_routing_SUITE.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/emqx/test/emqx_routing_SUITE.erl b/apps/emqx/test/emqx_routing_SUITE.erl index 6966ac56a..a54e1b4dd 100644 --- a/apps/emqx/test/emqx_routing_SUITE.erl +++ b/apps/emqx/test/emqx_routing_SUITE.erl @@ -100,7 +100,7 @@ mk_config_listeners(N) -> t_cluster_routing(Config) -> Cluster = ?config(cluster, Config), - Clients = [C1, C2, C3] = [start_client(N) || N <- Cluster], + Clients = [C1, C2, C3] = lists:sort([start_client(N) || N <- Cluster]), Commands = [ {fun publish/3, [C1, <<"a/b/c">>, <<"wontsee">>]}, {fun publish/3, [C2, <<"a/b/d">>, <<"wontsee">>]},