From b64648977885587992ccb2efde2950054ff46ccc Mon Sep 17 00:00:00 2001 From: Aleksey Sabilin Date: Sun, 19 Jul 2026 12:29:06 +0300 Subject: [PATCH] fix: end handle_call/3 with period so release compiles Trailing semicolon after wait_for_tables clause made Erlang treat handle_cast as another handle_call clause and failed rebar3 as prod release. --- src/infra/infra_mnesia.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/infra/infra_mnesia.erl b/src/infra/infra_mnesia.erl index a166dee..915fb03 100644 --- a/src/infra/infra_mnesia.erl +++ b/src/infra/infra_mnesia.erl @@ -138,7 +138,7 @@ handle_call(wait_for_tables, _From, State) -> case do_wait_for_tables() of ok -> {reply, ok, State}; {error, Reason} -> {reply, {error, Reason}, State} - end; + end. handle_cast(_Msg, State) -> {noreply, State}. handle_info({cleanup}, State) ->