Merge pull request #11965 from savonarola/1117-fix-mongo-resource-stop-53

fix deadlock while stopping mongodb resource
This commit is contained in:
Ilya Averyanov 2023-11-17 21:53:11 +02:00 committed by GitHub
commit 034d4dcdcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -3,5 +3,5 @@
{erl_opts, [debug_info]}.
{deps, [ {emqx_connector, {path, "../../apps/emqx_connector"}}
, {emqx_resource, {path, "../../apps/emqx_resource"}}
, {mongodb, {git, "https://github.com/emqx/mongodb-erlang", {tag, "v3.0.21"}}}
, {mongodb, {git, "https://github.com/emqx/mongodb-erlang", {tag, "v3.0.22"}}}
]}.

View File

@ -0,0 +1 @@
Fix EMQX graceful stop when there is an unavailable MongoDB resource present.