Ver Fonte

Catch RDFLib ResultException for version retrieval.

Stefano Cossu há 7 anos atrás
pai
commit
2fad94f7c1
1 ficheiros alterados com 13 adições e 3 exclusões
  1. 13 3
      lakesuperior/store_layouts/ldp_rs/default_layout.py

+ 13 - 3
lakesuperior/store_layouts/ldp_rs/default_layout.py

@@ -129,7 +129,12 @@ class DefaultLayout(BaseRdfLayout):
           }
         }
         '''
-        rsp = self.ds.query(q, initBindings={'s': urn})
+        try:
+            rsp = self.ds.query(q, initBindings={'s': urn})
+        except ResultException:
+            # RDFlib bug: https://github.com/RDFLib/rdflib/issues/775
+            rsp = Graph()
+
         if not len(rsp):
             raise ResourceNotExistsError(
                     urn, 'No version found for this resource.')
@@ -154,8 +159,13 @@ class DefaultLayout(BaseRdfLayout):
           }
         }
         '''
-        rsp = self.ds.query(q, initBindings={
-            's': urn, 'uid': Literal(ver_uid)})
+        try:
+            rsp = self.ds.query(q, initBindings={
+                's': urn, 'uid': Literal(ver_uid)})
+        except ResultException:
+            # RDFlib bug: https://github.com/RDFLib/rdflib/issues/775
+            rsp = Graph()
+
         if not len(rsp):
             raise ResourceNotExistsError(
                     urn,