Browse Source

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

don't use continue in Stats init for test env

See merge request pleroma/pleroma!3349
feature/2515-admin-statuses
lain 3 years ago
parent
commit
dd937ae625
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      lib/pleroma/stats.ex

+ 5
- 1
lib/pleroma/stats.ex View File

@@ -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…
Cancel
Save