From f52b229baad212a052ae756ba89a51fad23049d3 Mon Sep 17 00:00:00 2001 From: Mark Felder Date: Fri, 12 Jul 2024 11:33:38 -0400 Subject: Oban: change :discard return values to :cancel :discard will be removed in Oban 3.0. It was only meant for internal use. --- lib/pleroma/web/activity_pub/publisher.ex | 6 +++--- lib/pleroma/workers/remote_fetcher_worker.ex | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'lib') diff --git a/lib/pleroma/web/activity_pub/publisher.ex b/lib/pleroma/web/activity_pub/publisher.ex index a42b4844e..90c4274f2 100644 --- a/lib/pleroma/web/activity_pub/publisher.ex +++ b/lib/pleroma/web/activity_pub/publisher.ex @@ -123,9 +123,9 @@ defmodule Pleroma.Web.ActivityPub.Publisher do Logger.error("Publisher failed to inbox #{inbox} with status #{code}") case response do - %{status: 403} -> {:discard, :forbidden} - %{status: 404} -> {:discard, :not_found} - %{status: 410} -> {:discard, :not_found} + %{status: 403} -> {:cancel, :forbidden} + %{status: 404} -> {:cancel, :not_found} + %{status: 410} -> {:cancel, :not_found} _ -> {:error, e} end diff --git a/lib/pleroma/workers/remote_fetcher_worker.ex b/lib/pleroma/workers/remote_fetcher_worker.ex index debbbe012..6d777ae94 100644 --- a/lib/pleroma/workers/remote_fetcher_worker.ex +++ b/lib/pleroma/workers/remote_fetcher_worker.ex @@ -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 -- cgit v1.2.3