[arvados] updated: 2.7.0-6306-ge54662c069
git repository hosting
git at public.arvados.org
Thu Apr 4 16:36:29 UTC 2024
Summary of changes:
sdk/python/arvados/arvfile.py | 19 ++--
sdk/python/arvados/diskcache.py | 129 ++++++++++++------------
sdk/python/arvados/keep.py | 88 ++++++++--------
sdk/python/tests/test_keep_client.py | 166 +++++++------------------------
sdk/python/tests/test_storage_classes.py | 128 ++++++++++++++++++++++++
services/fuse/arvados_fuse/command.py | 12 +--
6 files changed, 292 insertions(+), 250 deletions(-)
create mode 100644 sdk/python/tests/test_storage_classes.py
via e54662c069d72c7a22f89bd889370703790d2536 (commit)
via 75244c16116d53c5f96b8b71b6b60b249aadba89 (commit)
via 8090c845fea8d9532be5c4347f06dcf9fa7c868c (commit)
via 9d07096105edd0ff289d97cb9951b9ee40dba7d8 (commit)
via 08f8ec2186df6d3111fdd274e71d9e12742f5e9d (commit)
via db302194cfe02e27bb8d476f68831009ef2aa76d (commit)
via 74b95d1f2b982c0e33bceda9c5f6e06af0a3919c (commit)
via 593917ad86ce138fd4735628a3437a920130b691 (commit)
via 10564bc0d78545b71a5815c3332403f2e8a0d562 (commit)
via 8215e5931aeed29d82e94b5129a685e0b2f084c3 (commit)
via bd04725444b7ab15ea81647c519a580ca50a94de (commit)
via 743b9941ce35d8877365742700c9b4c1eded0968 (commit)
via b91d06bf3ede4b9afa5a74070a4f8ca95d16f629 (commit)
via cc3f89292c0136ce5d9e56506f82ea743c59fff8 (commit)
via 062542e47eb3bbb1ad911f2bcb6e51967f80db86 (commit)
from ec67d31d1c519c4b1b624f6df0534d27f39f3ed9 (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 e54662c069d72c7a22f89bd889370703790d2536
Merge: ec67d31d1c 75244c1611
Author: Peter Amstutz <peter.amstutz at curii.com>
Date: Thu Apr 4 12:36:15 2024 -0400
Merge branch '21639-keep-cache-dict' refs #21639
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz at curii.com>
commit 75244c16116d53c5f96b8b71b6b60b249aadba89
Author: Peter Amstutz <peter.amstutz at curii.com>
Date: Thu Apr 4 11:57:54 2024 -0400
21639: Add type hint to cachelist
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz at curii.com>
diff --git a/sdk/python/arvados/diskcache.py b/sdk/python/arvados/diskcache.py
index a0b3bbb7c9..528a7d28b5 100644
--- a/sdk/python/arvados/diskcache.py
+++ b/sdk/python/arvados/diskcache.py
@@ -244,7 +244,7 @@ class DiskCacheSlot(object):
# Map in all the files we found, up to maxslots, if we exceed
# maxslots, start throwing things out.
- cachelist = collections.OrderedDict()
+ cachelist: collections.OrderedDict = collections.OrderedDict()
for b in blocks:
got = DiskCacheSlot.get_from_disk(b[0], cachedir)
if got is None:
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list