Browse Source

Catch RDFLib ResultException for version retrieval.

Stefano Cossu 7 years ago
parent
commit
2fad94f7c1
1 changed files with 13 additions and 3 deletions
  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):
         if not len(rsp):
             raise ResourceNotExistsError(
             raise ResourceNotExistsError(
                     urn, 'No version found for this resource.')
                     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):
         if not len(rsp):
             raise ResourceNotExistsError(
             raise ResourceNotExistsError(
                     urn,
                     urn,