transmogrifier: avoid crashes on non-validation Delte errors

Happens e.g. for duplicated Deletes.
The remaining tombstone object no longer has an actor,
leading to an error response during side-effect handling.
This commit is contained in:
Oneric 2024-12-18 01:21:56 +01:00
parent 7ad5f8d3c0
commit 92bf93a4f7

View file

@ -572,6 +572,12 @@ defp handle_incoming_normalised(
else
_ -> e
end
{:error, _} = e ->
e
e ->
{:error, e}
end
end