Merge pull request #11655 from keynslug/fix/persistent-session-tcs
test(session): fix quic testgroup in persistent session suite
This commit is contained in:
commit
d6a97987e2
|
@ -102,13 +102,18 @@ init_per_group(Group, Config) when Group == quic ->
|
||||||
[
|
[
|
||||||
{emqx,
|
{emqx,
|
||||||
?config(emqx_config, Config) ++
|
?config(emqx_config, Config) ++
|
||||||
"\n listeners.quic.test { enable = true }"}
|
"\n listeners.quic.test {"
|
||||||
|
"\n enable = true"
|
||||||
|
"\n ssl_options.verify = verify_peer"
|
||||||
|
"\n }"}
|
||||||
],
|
],
|
||||||
#{work_dir => emqx_cth_suite:work_dir(Config)}
|
#{work_dir => emqx_cth_suite:work_dir(Config)}
|
||||||
),
|
),
|
||||||
[
|
[
|
||||||
{port, get_listener_port(quic, test)},
|
{port, get_listener_port(quic, test)},
|
||||||
{conn_fun, quic_connect},
|
{conn_fun, quic_connect},
|
||||||
|
{ssl_opts, emqx_common_test_helpers:client_ssl_twoway()},
|
||||||
|
{ssl, true},
|
||||||
{group_apps, Apps}
|
{group_apps, Apps}
|
||||||
| Config
|
| Config
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue