Skip to content

Commit f76c1bd

Browse files
Fix: pass protocol to Meta.from_info in _filter_changed (fixes treeverse/dvc#10594) (#656)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 25d0076 commit f76c1bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dvc_data/index/fetch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def _filter_changed(index):
7676
ret.add(entry)
7777
continue
7878

79-
meta = Meta.from_info(info)
79+
meta = Meta.from_info(info, data_fs.protocol)
8080
old = getattr(entry.meta, data_fs.PARAM_CHECKSUM, None) if entry.meta else None
8181
new = getattr(meta, data_fs.PARAM_CHECKSUM, None)
8282

0 commit comments

Comments
 (0)