Merge pull request #13018 from thalesmg/fix-postgres-log-spam-r57-20240510

fix(postgres): reduce log spamming when connection goes down
This commit is contained in:
Thales Macedo Garitezi 2024-05-14 09:00:36 -03:00 committed by GitHub
commit e8d2c48d3c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 2 deletions

View File

@ -2,7 +2,7 @@
{erl_opts, [debug_info]}. {erl_opts, [debug_info]}.
{deps, [ {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_connector, {path, "../../apps/emqx_connector"}},
{emqx_resource, {path, "../../apps/emqx_resource"}} {emqx_resource, {path, "../../apps/emqx_resource"}}
]}. ]}.

View File

@ -0,0 +1 @@
Reduced log spamming when connection goes down in a Postgres/Timescale/Matrix connector.

View File

@ -79,7 +79,7 @@ defmodule EMQXUmbrella.MixProject do
# in conflict by ehttpc and emqtt # in conflict by ehttpc and emqtt
{:gun, github: "emqx/gun", tag: "1.3.11", override: true}, {:gun, github: "emqx/gun", tag: "1.3.11", override: true},
# in conflict by emqx_connector and system_monitor # 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 # in conflict by emqx and observer_cli
{:recon, github: "ferd/recon", tag: "2.5.1", override: true}, {:recon, github: "ferd/recon", tag: "2.5.1", override: true},
{:jsx, github: "talentdeficit/jsx", tag: "v3.1.0", override: true}, {:jsx, github: "talentdeficit/jsx", tag: "v3.1.0", override: true},