Collect stats immediately after init

This commit is contained in:
rinpatch 2019-08-15 01:01:13 +03:00
parent 31d576de0c
commit e8a8d50138

View file

@ -32,7 +32,7 @@ defmodule Pleroma.Stats do
end end
def init(args) do def init(args) do
Process.send_after(self(), :run_update, @interval) Process.send(self(), :run_update, [])
{:ok, args} {:ok, args}
end end