don't use continue in Stats init for test env

This commit is contained in:
Alexander Strizhakov 2021-02-27 09:39:15 +03:00
parent 840686ecd5
commit da5d21a1cf
No known key found for this signature in database
GPG Key ID: 022896A53AEF1381
1 changed files with 5 additions and 1 deletions

View File

@ -23,7 +23,11 @@ def start_link(_) do
@impl true
def init(_args) do
{:ok, nil, {:continue, :calculate_stats}}
if Pleroma.Config.get(:env) != :test do
{:ok, nil, {:continue, :calculate_stats}}
else
{:ok, calculate_stat_data()}
end
end
@doc "Performs update stats"