Oban: change :discard return values to :cancel

:discard will be removed in Oban 3.0. It was only meant for internal use.
This commit is contained in:
Mark Felder 2024-07-12 11:33:38 -04:00
commit f52b229baa
5 changed files with 12 additions and 12 deletions

View file

@ -14,16 +14,16 @@ defmodule Pleroma.Workers.RemoteFetcherWorker do
:ok
{:rejected, reason} ->
{:discard, reason}
{:cancel, reason}
{:error, :forbidden} ->
{:discard, :forbidden}
{:cancel, :forbidden}
{:error, :not_found} ->
{:discard, :not_found}
{:cancel, :not_found}
{:error, :allowed_depth} ->
{:discard, :allowed_depth}
{:cancel, :allowed_depth}
{:error, _} = e ->
e