logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 27b747546a7796de57e88f454b2c2810c7523f97
parent: 31d576de0c91019d80e465984d4423779e7ccede
Author: rinpatch <rinpatch@sdf.org>
Date:   Wed, 14 Aug 2019 22:10:44 +0000

Merge branch 'fix/stats-send-after' into 'develop'

Collect stats immediately after init

See merge request pleroma/pleroma!1574

Diffstat:

Mlib/pleroma/stats.ex2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/pleroma/stats.ex b/lib/pleroma/stats.ex @@ -32,7 +32,7 @@ defmodule Pleroma.Stats do end def init(args) do - Process.send_after(self(), :run_update, @interval) + Process.send(self(), :run_update, []) {:ok, args} end