Increase timeout for background, remote fetcher, and user refresh jobs
This commit is contained in:
parent
d62a9afed3
commit
fdeb8616e8
5 changed files with 4 additions and 4 deletions
|
|
@ -40,5 +40,5 @@ defmodule Pleroma.Workers.BackgroundWorker do
|
|||
end
|
||||
|
||||
@impl Oban.Worker
|
||||
def timeout(_job), do: :timer.seconds(5)
|
||||
def timeout(_job), do: :timer.seconds(15)
|
||||
end
|
||||
|
|
|
|||
|
|
@ -31,5 +31,5 @@ defmodule Pleroma.Workers.RemoteFetcherWorker do
|
|||
end
|
||||
|
||||
@impl Oban.Worker
|
||||
def timeout(_job), do: :timer.seconds(10)
|
||||
def timeout(_job), do: :timer.seconds(15)
|
||||
end
|
||||
|
|
|
|||
|
|
@ -13,5 +13,5 @@ defmodule Pleroma.Workers.UserRefreshWorker do
|
|||
end
|
||||
|
||||
@impl Oban.Worker
|
||||
def timeout(_job), do: :timer.seconds(5)
|
||||
def timeout(_job), do: :timer.seconds(15)
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue