moved Pleroma.Stats to Oban Periodic jobs

This commit is contained in:
Maksim Pechnikov 2019-11-26 10:53:07 +03:00
commit ac3abb5414
4 changed files with 48 additions and 11 deletions

View file

@ -0,0 +1,16 @@
# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Workers.Cron.StatsWorker do
@moduledoc """
The worker to update peers statistics.
"""
use Oban.Worker, queue: "background"
@impl Oban.Worker
def perform(_opts, _job) do
Pleroma.Stats.do_collect()
end
end