test(quic): update emqx_broker_SUITE

This commit is contained in:
William Yang 2023-09-20 20:20:18 +02:00
parent da626f6d29
commit e43b87f18e
1 changed files with 3 additions and 0 deletions

View File

@ -86,6 +86,7 @@ init_per_group(quic, Config) ->
"\n enable = true" "\n enable = true"
"\n max_connections = 1024000" "\n max_connections = 1024000"
"\n idle_timeout = 15s" "\n idle_timeout = 15s"
"\n ssl_options.verify = verify_peer"
"\n }"} "\n }"}
], ],
#{work_dir => emqx_cth_suite:work_dir(Config)} #{work_dir => emqx_cth_suite:work_dir(Config)}
@ -93,6 +94,8 @@ init_per_group(quic, Config) ->
[ [
{conn_fun, quic_connect}, {conn_fun, quic_connect},
{port, emqx_config:get([listeners, quic, test, bind])}, {port, emqx_config:get([listeners, quic, test, bind])},
{ssl_opts, emqx_common_test_helpers:client_ssl_twoway()},
{ssl, true},
{group_apps, Apps} {group_apps, Apps}
| Config | Config
]; ];