mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2025-01-03 05:48:42 +00:00
Merge branch 'oban/fetcher-discard-rejected' into 'develop'
Discard Remote Fetcher jobs which errored due to an MRF rejection See merge request pleroma/pleroma!4174
This commit is contained in:
commit
3754713599
2 changed files with 4 additions and 0 deletions
1
changelog.d/oban-fetcher-rejected.change
Normal file
1
changelog.d/oban-fetcher-rejected.change
Normal file
|
@ -0,0 +1 @@
|
|||
Discard Remote Fetcher jobs which errored due to an MRF rejection
|
|
@ -13,6 +13,9 @@ defmodule Pleroma.Workers.RemoteFetcherWorker do
|
|||
{:ok, _object} ->
|
||||
:ok
|
||||
|
||||
{:rejected, reason} ->
|
||||
{:discard, reason}
|
||||
|
||||
{:error, :forbidden} ->
|
||||
{:discard, :forbidden}
|
||||
|
||||
|
|
Loading…
Reference in a new issue