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:
parent
7ad5f8d3c0
commit
92bf93a4f7
1 changed files with 6 additions and 0 deletions
|
@ -572,6 +572,12 @@ defp handle_incoming_normalised(
|
|||
else
|
||||
_ -> e
|
||||
end
|
||||
|
||||
{:error, _} = e ->
|
||||
e
|
||||
|
||||
e ->
|
||||
{:error, e}
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue