Skip to content

Commit 48a30fe

Browse files
authored
Merge pull request #180 from GATEOverflow/dev
Don't handle dependent_cached_path in mlcflow
2 parents 95dd6bf + 1eda00e commit 48a30fe

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

mlc/cache_action.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,15 @@ def search(self, i):
4949

5050
for item in r['list']:
5151
item_meta = item.meta
52+
'''#handled in script automation now
5253
dep = item_meta.get('dependent_cached_path')
5354
if dep and not os.path.exists(dep):
5455
continue # skip item
5556
5657
deps = item_meta.get('dependent_cached_paths', '').split(',')
5758
if any(d and not os.path.exists(d) for d in deps):
5859
continue # skip item
60+
'''
5961

6062
expiration_time = item_meta.get('expiration_time')
6163
if expiration_time is not None and expiration_time < time.time():

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "mlcflow"
7-
version = "1.0.21"
7+
version = "1.0.23"
88

99

1010

0 commit comments

Comments
 (0)