소스 검색

Don't choke deleting a resource if a child is already deleted.

Stefano Cossu 7 년 전
부모
커밋
98db952a9c
1개의 변경된 파일6개의 추가작업 그리고 3개의 파일을 삭제
  1. 6 3
      lakesuperior/model/ldpr.py

+ 6 - 3
lakesuperior/model/ldpr.py

@@ -474,9 +474,12 @@ class Ldpr(metaclass=ABCMeta):
             ret = self._purge_rsrc(inbound)
 
         for child_uri in children:
-            child_rsrc = LdpFactory.from_stored(
-                g.tbox.uri_to_uuid(child_uri.identifier),
-                repr_opts={'incl_children' : False})
+            try:
+                child_rsrc = LdpFactory.from_stored(
+                    g.tbox.uri_to_uuid(child_uri.identifier),
+                    repr_opts={'incl_children' : False})
+            except (TombstoneError, ResourceNotExistsError):
+                continue
             if leave_tstone:
                 child_rsrc._bury_rsrc(inbound, tstone_pointer=self.urn)
             else: