fix(postgres): reduce log spamming when connection goes down
Fixes https://emqx.atlassian.net/browse/EMQX-12334 See also: https://github.com/emqx/epgsql/pull/10
This commit is contained in:
parent
8c0b55a89e
commit
f690db9849
|
@ -2,7 +2,7 @@
|
|||
|
||||
{erl_opts, [debug_info]}.
|
||||
{deps, [
|
||||
{epgsql, {git, "https://github.com/emqx/epgsql", {tag, "4.7.1.1"}}},
|
||||
{epgsql, {git, "https://github.com/emqx/epgsql", {tag, "4.7.1.2"}}},
|
||||
{emqx_connector, {path, "../../apps/emqx_connector"}},
|
||||
{emqx_resource, {path, "../../apps/emqx_resource"}}
|
||||
]}.
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Reduced log spamming when connection goes down in a Postgres/Timescale/Matrix connector.
|
2
mix.exs
2
mix.exs
|
@ -79,7 +79,7 @@ defmodule EMQXUmbrella.MixProject do
|
|||
# in conflict by ehttpc and emqtt
|
||||
{:gun, github: "emqx/gun", tag: "1.3.11", override: true},
|
||||
# in conflict by emqx_connector and system_monitor
|
||||
{:epgsql, github: "emqx/epgsql", tag: "4.7.1.1", override: true},
|
||||
{:epgsql, github: "emqx/epgsql", tag: "4.7.1.2", override: true},
|
||||
# in conflict by emqx and observer_cli
|
||||
{:recon, github: "ferd/recon", tag: "2.5.1", override: true},
|
||||
{:jsx, github: "talentdeficit/jsx", tag: "v3.1.0", override: true},
|
||||
|
|
Loading…
Reference in New Issue