2755: Defer to CollectionReader to get manifests instead of going
authorTom Clegg <tom@curoverse.com>
Thu, 15 May 2014 21:14:15 +0000 (17:14 -0400)
committerTom Clegg <tom@curoverse.com>
Thu, 15 May 2014 21:16:32 +0000 (17:16 -0400)
directly to Keep (which only works when Keep has no permission
checks).

refs #2755

services/fuse/arvados_fuse/__init__.py

index 7396c290f8b286e85cdc4243a13675a3ab66250d..62af6c0c7cc31beaedaba9a066808395f5249838 100644 (file)
@@ -183,7 +183,7 @@ class CollectionDirectory(Directory):
 
     def update(self):
         try:
-            collection = arvados.CollectionReader(arvados.Keep.get(self.collection_locator))
+            collection = arvados.CollectionReader(self.collection_locator)
             for s in collection.all_streams():
                 cwd = self
                 for part in s.name().split('/'):