19215: store keep blocks in /var/lib/arvados/keep instead of /tmp
[arvados.git] / sdk / python / arvados / arvfile.py
index a13575b715922f306c14ce4bb6a82fbe766fae8f..2ce0e46b30bd67ad948f832183ab091865c2ea53 100644 (file)
@@ -593,7 +593,7 @@ class _BlockManager(object):
                 b = self._prefetch_queue.get()
                 if b is None:
                     return
-                self._keep.get(b, cache_slot_get=False)
+                self._keep.get(b, prefetch=True)
             except Exception:
                 _logger.exception("Exception doing block prefetch")
 
@@ -846,7 +846,6 @@ class _BlockManager(object):
                 return
 
         self.start_get_threads()
-        # _logger.debug("pushing %s to prefetch", locator)
         self._prefetch_queue.put(locator)