logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: dd937ae625d34033d7a752f914e9b9ff3fb24ae4
parent 840686ecd5b57a210415539d4f5cc1038d25e5ce
Author: lain <lain@soykaf.club>
Date:   Sat, 27 Feb 2021 19:37:08 +0000

Merge branch 'fix/repo-terminate' into 'develop'

don't use continue in Stats init for test env

See merge request pleroma/pleroma!3349

Diffstat:

Mlib/pleroma/stats.ex6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/lib/pleroma/stats.ex b/lib/pleroma/stats.ex @@ -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"