[ARVADOS] updated: 2.1.0-2167-g9b5642f1d

Git user git at public.arvados.org
Tue Mar 29 17:02:23 UTC 2022


Summary of changes:
 services/fuse/arvados_fuse/fusedir.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

       via  9b5642f1d360ca1572dff5291c9be72913d4a623 (commit)
      from  348ef77de2aac95cdaff388da9602362ae269126 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 9b5642f1d360ca1572dff5291c9be72913d4a623
Author: Peter Amstutz <peter.amstutz at curii.com>
Date:   Tue Mar 29 13:02:10 2022 -0400

    18941: Order of operations
    
    Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz at curii.com>

diff --git a/services/fuse/arvados_fuse/fusedir.py b/services/fuse/arvados_fuse/fusedir.py
index bea7ed18c..1406c4e4a 100644
--- a/services/fuse/arvados_fuse/fusedir.py
+++ b/services/fuse/arvados_fuse/fusedir.py
@@ -530,12 +530,12 @@ class CollectionDirectory(CollectionDirectoryBase):
                             coll_reader = arvados.collection.Collection(
                                 self.collection_locator, self.api, self.api.keep,
                                 num_retries=self.num_retries,
-                                get_threads=(self.api.keep.block_cache.cache_max // 64 * 1024 * 1024)                            )
+                                get_threads=(self.api.keep.block_cache.cache_max // (64 * 1024 * 1024)))
                         else:
                             coll_reader = arvados.collection.CollectionReader(
                                 self.collection_locator, self.api, self.api.keep,
                                 num_retries=self.num_retries,
-                                get_threads=(self.api.keep.block_cache.cache_max // 64 * 1024 * 1024)
+                                get_threads=(self.api.keep.block_cache.cache_max // (64 * 1024 * 1024))
                             )
                         new_collection_record = coll_reader.api_response() or {}
                         # If the Collection only exists in Keep, there will be no API

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list