forked from AkkomaGang/akkoma
handle_continue is OTP21+
This commit is contained in:
parent
d096bc17bf
commit
fd0e7d18d9
1 changed files with 3 additions and 2 deletions
|
@ -41,11 +41,12 @@ def get_all() do
|
|||
@doc false
|
||||
def init(_) do
|
||||
@ets = :ets.new(@ets, @ets_options)
|
||||
{:ok, nil, {:continue, :reload}}
|
||||
GenServer.cast(self(), :reload)
|
||||
{:ok, nil}
|
||||
end
|
||||
|
||||
@doc false
|
||||
def handle_continue(:reload, state) do
|
||||
def handle_cast(:reload, state) do
|
||||
load()
|
||||
{:noreply, state}
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue