logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: e4288df50266a73ae1485c684b18d6f20f3234b0
parent ad38cc3b0c7895554291e874dfcfcf011b21f886
Author: Haelwenn <contact+git.pleroma.social@hacktivis.me>
Date:   Sat, 25 Mar 2023 05:40:35 +0000

Merge branch 'background-timeout' into 'develop'

Set background worker timeout to 15 minutes

See merge request pleroma/pleroma!3857

Diffstat:

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

diff --git a/lib/pleroma/workers/background_worker.ex b/lib/pleroma/workers/background_worker.ex @@ -45,5 +45,5 @@ defmodule Pleroma.Workers.BackgroundWorker do end @impl Oban.Worker - def timeout(_job), do: :timer.seconds(5) + def timeout(_job), do: :timer.seconds(900) end