don't use continue in Stats init for test env
This commit is contained in:
parent
840686ecd5
commit
da5d21a1cf
|
@ -23,7 +23,11 @@ def start_link(_) do
|
||||||
|
|
||||||
@impl true
|
@impl true
|
||||||
def init(_args) do
|
def init(_args) do
|
||||||
|
if Pleroma.Config.get(:env) != :test do
|
||||||
{:ok, nil, {:continue, :calculate_stats}}
|
{:ok, nil, {:continue, :calculate_stats}}
|
||||||
|
else
|
||||||
|
{:ok, calculate_stat_data()}
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@doc "Performs update stats"
|
@doc "Performs update stats"
|
||||||
|
|
Loading…
Reference in New Issue