From bd4a84ac0ad8c316e6b28cd485be7d1f2b24f878 Mon Sep 17 00:00:00 2001 From: William Yang Date: Mon, 20 Feb 2023 14:48:39 +0100 Subject: [PATCH] test(quic): adapt to new emqtt reconnect mechanism. --- apps/emqx/test/emqx_quic_multistreams_SUITE.erl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/emqx/test/emqx_quic_multistreams_SUITE.erl b/apps/emqx/test/emqx_quic_multistreams_SUITE.erl index 52eb679b9..17ba85da7 100644 --- a/apps/emqx/test/emqx_quic_multistreams_SUITE.erl +++ b/apps/emqx/test/emqx_quic_multistreams_SUITE.erl @@ -1369,6 +1369,8 @@ t_multi_streams_shutdown_ctrl_stream_then_reconnect(Config) -> {ok, C} = emqtt:start_link([ {proto_ver, v5}, {reconnect, true}, + {clean_start, false}, + {clientid, atom_to_binary(?FUNCTION_NAME)}, %% speedup test {connect_timeout, 5} | Config @@ -1583,6 +1585,8 @@ t_multi_streams_remote_shutdown_with_reconnect(Config) -> {ok, C} = emqtt:start_link([ {proto_ver, v5}, {reconnect, true}, + {clean_start, false}, + {clientid, atom_to_binary(?FUNCTION_NAME)}, %% speedup test {connect_timeout, 5} | Config