[#142] container: do not fail when deleting missing container

Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
Evgenii Stratonikov 2021-10-25 15:43:57 +03:00 committed by Alex Vanin
parent 6bd088aa9f
commit 2cb10edfd2
2 changed files with 8 additions and 1 deletions

View file

@ -303,7 +303,7 @@ func Delete(containerID []byte, signature interop.Signature, token []byte) {
ownerID := getOwnerByID(ctx, containerID)
if ownerID == nil {
panic(NotFoundError)
return
}
if notaryDisabled {