fix: end handle_call/3 with period so release compiles
CI / test (push) Successful in 24m7s
CI / deploy-ift (push) Failing after 12m0s
CI / e2e-ift (push) Has been skipped
CI / deploy-stage (push) Has been skipped
CI / e2e-stage (push) Has been skipped

Trailing semicolon after wait_for_tables clause made Erlang treat handle_cast as another handle_call clause and failed rebar3 as prod release.
This commit is contained in:
2026-07-19 12:29:06 +03:00
parent ccca8d0a1f
commit b646489778
+1 -1
View File
@@ -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) ->