Merge pull request #7504 from EMQ-YangM/update_mongodb_driver
fix: update mongodb driver to fix potential process leak
This commit is contained in:
commit
7b4d3ecb3a
|
@ -24,6 +24,7 @@ File format:
|
||||||
|
|
||||||
* Prohibit empty topics in strict mode
|
* Prohibit empty topics in strict mode
|
||||||
* Make sure ehttpc delete useless pool always succeed.
|
* Make sure ehttpc delete useless pool always succeed.
|
||||||
|
* Update mongodb driver to fix potential process leak.
|
||||||
|
|
||||||
## v4.3.13
|
## v4.3.13
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
{deps,
|
{deps,
|
||||||
%% NOTE: mind poolboy version when updating mongodb-erlang version
|
%% NOTE: mind poolboy version when updating mongodb-erlang version
|
||||||
[{mongodb, {git,"https://github.com/emqx/mongodb-erlang", {tag, "v3.0.12"}}},
|
[%% mongodb-erlang uses a special fork https://github.com/comtihon/poolboy.git
|
||||||
%% mongodb-erlang uses a special fork https://github.com/comtihon/poolboy.git
|
|
||||||
%% (which has overflow_ttl feature added).
|
%% (which has overflow_ttl feature added).
|
||||||
%% However, it references `{branch, "master}` (commit 9c06a9a on 2021-04-07).
|
%% However, it references `{branch, "master}` (commit 9c06a9a on 2021-04-07).
|
||||||
%% By accident, We have always been using the upstream fork due to
|
%% By accident, We have always been using the upstream fork due to
|
||||||
|
@ -29,4 +28,3 @@
|
||||||
{cover_enabled, true}.
|
{cover_enabled, true}.
|
||||||
{cover_opts, [verbose]}.
|
{cover_opts, [verbose]}.
|
||||||
{cover_export_enabled, true}.
|
{cover_export_enabled, true}.
|
||||||
|
|
||||||
|
|
|
@ -57,6 +57,7 @@
|
||||||
, {getopt, "1.0.1"}
|
, {getopt, "1.0.1"}
|
||||||
, {snabbkaffe, {git, "https://github.com/kafka4beam/snabbkaffe.git", {tag, "0.15.0"}}}
|
, {snabbkaffe, {git, "https://github.com/kafka4beam/snabbkaffe.git", {tag, "0.15.0"}}}
|
||||||
, {lc, {git, "https://github.com/emqx/lc.git", {tag, "0.2.0"}}}
|
, {lc, {git, "https://github.com/emqx/lc.git", {tag, "0.2.0"}}}
|
||||||
|
, {mongodb, {git,"https://github.com/emqx/mongodb-erlang", {tag, "v3.0.13"}}}
|
||||||
]}.
|
]}.
|
||||||
|
|
||||||
{xref_ignores,
|
{xref_ignores,
|
||||||
|
|
Loading…
Reference in New Issue