From cf72947f0a47699bd5a35e0a1871e646cd9fc177 Mon Sep 17 00:00:00 2001 From: William Yang Date: Thu, 16 Feb 2023 14:56:49 +0100 Subject: [PATCH] test(quic): use quic.ssl_options --- apps/emqx/test/emqx_common_test_helpers.erl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/emqx/test/emqx_common_test_helpers.erl b/apps/emqx/test/emqx_common_test_helpers.erl index 7ba53d420..fe1dfa35e 100644 --- a/apps/emqx/test/emqx_common_test_helpers.erl +++ b/apps/emqx/test/emqx_common_test_helpers.erl @@ -509,9 +509,10 @@ ensure_quic_listener(Name, UdpPort) -> ], enabled => true, idle_timeout => 15000, - ssl_options => #{ certfile => filename:join(code:lib_dir(emqx), "etc/certs/cert.pem"), - keyfile => filename:join(code:lib_dir(emqx), "etc/certs/key.pem") - }, + ssl_options => #{ + certfile => filename:join(code:lib_dir(emqx), "etc/certs/cert.pem"), + keyfile => filename:join(code:lib_dir(emqx), "etc/certs/key.pem") + }, limiter => #{}, max_connections => 1024000, mountpoint => <<>>,