Przeglądaj źródła

Close store outside of store layout bootstrap() method

Stefano Cossu 7 lat temu
rodzic
commit
f6cceb8da1

+ 0 - 2
lakesuperior/store_layouts/ldp_rs/rsrc_centric_layout.py

@@ -187,7 +187,6 @@ class RsrcCentricLayout:
         with TxnManager(store, True):
             with open('data/bootstrap/rsrc_centric_layout.sparql', 'r') as f:
                 self.ds.update(f.read())
-        store.close()
 
 
     def get_raw(self, uri, ctx):
@@ -248,7 +247,6 @@ class RsrcCentricLayout:
           GRAPH ?g { ?s ?p ?o . }
         ''' + incl_child_qry + '\n}'
 
-        import pdb; pdb.set_trace()
         gr = self._parse_construct(qry, init_bindings={
             'rsrc': nsc['fcres'][uid],
             'ag': nsc['fcadmin'][uid],

+ 1 - 0
util/bootstrap.py

@@ -47,6 +47,7 @@ if __name__=='__main__':
     if hasattr(app.rdfly.store, 'begin'):
         with TxnManager(app.rdfly.store, write=True) as txn:
             app.rdfly.bootstrap()
+            app.rdfly.store.close()
     else:
         app.rdfly.bootstrap()