forked from AkkomaGang/akkoma
Only try refreshing every 6 hours.
This commit is contained in:
parent
ae0e6d8003
commit
d2c4a427f1
1 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ defmodule Pleroma.Web.Federator do
|
|||
|
||||
def start_link do
|
||||
spawn(fn ->
|
||||
Process.sleep(1000 * 60 * 1) # 10 minutes
|
||||
Process.sleep(1000 * 60 * 1) # 1 minute
|
||||
enqueue(:refresh_subscriptions, nil)
|
||||
end)
|
||||
GenServer.start_link(__MODULE__, {:sets.new(), :queue.new()}, name: __MODULE__)
|
||||
|
@ -20,7 +20,7 @@ def handle(:refresh_subscriptions, _) do
|
|||
Logger.debug("Federator running refresh subscriptions")
|
||||
Websub.refresh_subscriptions()
|
||||
spawn(fn ->
|
||||
Process.sleep(1000 * 60 * 60) # 60 minutes
|
||||
Process.sleep(1000 * 60 * 60 * 6) # 6 hours
|
||||
enqueue(:refresh_subscriptions, nil)
|
||||
end)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue