Properly handle un-needed background jobs

Cancel them if they're not needed

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2022-11-03 18:00:42 +01:00
parent c68c0c2120
commit 770a518ad1
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 11 additions and 1 deletions

View File

@ -69,7 +69,11 @@ defmodule Mobilizon.Service.Workers.Notification do
:ok
else
_ -> :ok
%Page{elements: [], total: 0} ->
{:cancel, :no_user_participations}
_ ->
:ok
end
end
@ -103,6 +107,9 @@ defmodule Mobilizon.Service.Workers.Notification do
:ok
else
%Page{elements: [], total: 0} ->
{:cancel, :no_user_participations}
_err ->
:ok
end
@ -128,6 +135,9 @@ defmodule Mobilizon.Service.Workers.Notification do
{:error, :event_not_found} ->
{:cancel, :event_participation_not_found}
%Page{elements: [], total: 0} ->
{:cancel, :no_participants_to_approve}
err ->
Logger.debug(inspect(err))
err