Merge pull request #11675 from qzhuyan/fix/william/quic-respect-param-verify
This commit is contained in:
commit
9106eb92d2
|
@ -24,7 +24,7 @@ IsQuicSupp = fun() ->
|
||||||
end,
|
end,
|
||||||
|
|
||||||
Bcrypt = {bcrypt, {git, "https://github.com/emqx/erlang-bcrypt.git", {tag, "0.6.0"}}},
|
Bcrypt = {bcrypt, {git, "https://github.com/emqx/erlang-bcrypt.git", {tag, "0.6.0"}}},
|
||||||
Quicer = {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.200"}}}.
|
Quicer = {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.201"}}}.
|
||||||
|
|
||||||
Dialyzer = fun(Config) ->
|
Dialyzer = fun(Config) ->
|
||||||
{dialyzer, OldDialyzerConfig} = lists:keyfind(dialyzer, 1, Config),
|
{dialyzer, OldDialyzerConfig} = lists:keyfind(dialyzer, 1, Config),
|
||||||
|
|
|
@ -437,6 +437,10 @@ do_start_listener(quic, ListenerName, #{bind := Bind} = Opts) ->
|
||||||
case maps:get(cacertfile, SSLOpts, undefined) of
|
case maps:get(cacertfile, SSLOpts, undefined) of
|
||||||
undefined ->
|
undefined ->
|
||||||
[];
|
[];
|
||||||
|
<<>> ->
|
||||||
|
[];
|
||||||
|
"" ->
|
||||||
|
[];
|
||||||
CaCertFile ->
|
CaCertFile ->
|
||||||
[{cacertfile, emqx_schema:naive_env_interpolation(CaCertFile)}]
|
[{cacertfile, emqx_schema:naive_env_interpolation(CaCertFile)}]
|
||||||
end ++
|
end ++
|
||||||
|
|
2
mix.exs
2
mix.exs
|
@ -835,7 +835,7 @@ defmodule EMQXUmbrella.MixProject do
|
||||||
defp quicer_dep() do
|
defp quicer_dep() do
|
||||||
if enable_quicer?(),
|
if enable_quicer?(),
|
||||||
# in conflict with emqx and emqtt
|
# in conflict with emqx and emqtt
|
||||||
do: [{:quicer, github: "emqx/quic", tag: "0.0.200", override: true}],
|
do: [{:quicer, github: "emqx/quic", tag: "0.0.201", override: true}],
|
||||||
else: []
|
else: []
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,7 @@ bcrypt() ->
|
||||||
{bcrypt, {git, "https://github.com/emqx/erlang-bcrypt.git", {tag, "0.6.1"}}}.
|
{bcrypt, {git, "https://github.com/emqx/erlang-bcrypt.git", {tag, "0.6.1"}}}.
|
||||||
|
|
||||||
quicer() ->
|
quicer() ->
|
||||||
{quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.200"}}}.
|
{quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.201"}}}.
|
||||||
|
|
||||||
jq() ->
|
jq() ->
|
||||||
{jq, {git, "https://github.com/emqx/jq", {tag, "v0.3.10"}}}.
|
{jq, {git, "https://github.com/emqx/jq", {tag, "v0.3.10"}}}.
|
||||||
|
|
Loading…
Reference in New Issue