mirror of
https://git.pleroma.social/sjw/pleroma.git
synced 2025-01-28 23:59:57 +01:00
Merge branch 'fix/repo-terminate' into 'develop'
don't use continue in Stats init for test env See merge request pleroma/pleroma!3349
This commit is contained in:
commit
dd937ae625
@ -23,7 +23,11 @@ defmodule Pleroma.Stats 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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user