From 864ed32571bfc21fb78024803cf28e02ca78953c Mon Sep 17 00:00:00 2001 From: ttt161 Date: Thu, 15 Jan 2026 09:50:42 +0300 Subject: [PATCH 1/5] bump epg_connector-0.0.4 --- rebar.config | 2 +- rebar.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rebar.config b/rebar.config index 2b2b37a..ec2298c 100644 --- a/rebar.config +++ b/rebar.config @@ -3,7 +3,7 @@ {brod, "4.3.2"}, {thrift, {git, "https://github.com/valitydev/thrift_erlang.git", {tag, "v1.0.0"}}}, {mg_proto, {git, "https://github.com/valitydev/machinegun-proto.git", {branch, "master"}}}, - {epg_connector, {git, "https://github.com/valitydev/epg_connector.git", {tag, "v0.0.3"}}} + {epg_connector, {git, "https://github.com/valitydev/epg_connector.git", {tag, "v0.0.4"}}} ]}. {shell, [ diff --git a/rebar.lock b/rebar.lock index b39f88f..b41ad33 100644 --- a/rebar.lock +++ b/rebar.lock @@ -7,7 +7,7 @@ {<<"crc32cer">>,{pkg,<<"crc32cer">>,<<"0.1.11">>},2}, {<<"epg_connector">>, {git,"https://github.com/valitydev/epg_connector.git", - {ref,"af35200fa1c63e7afeaa90cad862944c194b2686"}}, + {ref,"c52a03b6d9e70becfc16281f8dd5ac4843ae5801"}}, 0}, {<<"epgsql">>, {git,"https://github.com/epgsql/epgsql.git", From d09d9495c9b309159dd9db83dd068b4e25ab55c3 Mon Sep 17 00:00:00 2001 From: ttt161 Date: Thu, 15 Jan 2026 15:10:48 +0300 Subject: [PATCH 2/5] fix applications start --- apps/cdc_notifier/src/cdc_notifier_app.erl | 1 + rebar.config | 1 + 2 files changed, 2 insertions(+) diff --git a/apps/cdc_notifier/src/cdc_notifier_app.erl b/apps/cdc_notifier/src/cdc_notifier_app.erl index 121eef3..ee3d1e9 100644 --- a/apps/cdc_notifier/src/cdc_notifier_app.erl +++ b/apps/cdc_notifier/src/cdc_notifier_app.erl @@ -10,6 +10,7 @@ -export([start/2, stop/1]). start(_StartType, _StartArgs) -> + application:ensure_all_started(cdc_progressor), cdc_notifier_sup:start_link(). stop(_State) -> diff --git a/rebar.config b/rebar.config index ec2298c..3124c79 100644 --- a/rebar.config +++ b/rebar.config @@ -39,6 +39,7 @@ {recon, load}, {runtime_tools, load}, {tools, load}, + {canal, load}, {epg_connector, load}, sasl, cdc_notifier, From cac8a865353c8e3d6ef315fe68f9c254033f870c Mon Sep 17 00:00:00 2001 From: ttt161 Date: Thu, 15 Jan 2026 15:18:33 +0300 Subject: [PATCH 3/5] fix dialyzer --- apps/cdc_notifier/src/cdc_notifier_app.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/cdc_notifier/src/cdc_notifier_app.erl b/apps/cdc_notifier/src/cdc_notifier_app.erl index ee3d1e9..d04530c 100644 --- a/apps/cdc_notifier/src/cdc_notifier_app.erl +++ b/apps/cdc_notifier/src/cdc_notifier_app.erl @@ -10,7 +10,7 @@ -export([start/2, stop/1]). start(_StartType, _StartArgs) -> - application:ensure_all_started(cdc_progressor), + _ = application:ensure_all_started(cdc_progressor), cdc_notifier_sup:start_link(). stop(_State) -> From 8f8682127b516e12bad39bd327404a2e11795790 Mon Sep 17 00:00:00 2001 From: ttt161 Date: Thu, 15 Jan 2026 15:40:57 +0300 Subject: [PATCH 4/5] fix release --- apps/cdc_progressor/src/cdc_progressor.app.src | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/cdc_progressor/src/cdc_progressor.app.src b/apps/cdc_progressor/src/cdc_progressor.app.src index 2269b8a..8fa423e 100644 --- a/apps/cdc_progressor/src/cdc_progressor.app.src +++ b/apps/cdc_progressor/src/cdc_progressor.app.src @@ -6,6 +6,7 @@ {applications, [ kernel, stdlib, + jsx, epg_connector ]}, {env, []}, From ac9b0aef3d55d8dc877b51b1ea55ddbb75fa4ff8 Mon Sep 17 00:00:00 2001 From: ttt161 Date: Thu, 15 Jan 2026 15:59:03 +0300 Subject: [PATCH 5/5] fix log formatter --- rebar.config | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/rebar.config b/rebar.config index 3124c79..46e2985 100644 --- a/rebar.config +++ b/rebar.config @@ -32,7 +32,10 @@ {profiles, [ {prod, [ {deps, [ - {recon, "2.5.2"} + % for introspection on production bdd6632964883636c18cf7bfdd68c4f16f82c79e + {recon, "2.5.2"}, + {logger_logstash_formatter, + {git, "https://github.com/valitydev/logger_logstash_formatter.git", {ref, "08a66a6"}}} ]}, {relx, [ {release, {cdc_notifier, "0.1"}, [ @@ -41,6 +44,7 @@ {tools, load}, {canal, load}, {epg_connector, load}, + logger_logstash_formatter, sasl, cdc_notifier, cdc_progressor