mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-13 10:50:21 -04:00
bugfix: Fixes path related bug seen when addressing deferred items.
This commit is contained in:
parent
6c042d7192
commit
19bb27741d
1 changed files with 2 additions and 1 deletions
|
|
@ -1125,7 +1125,8 @@ Utilization of max. archive size: {csize_max:.0%}
|
|||
for item1, item2 in deferred:
|
||||
assert hardlink_master_seen(item1)
|
||||
assert hardlink_master_seen(item2)
|
||||
yield (path, compare_items(item1, item2))
|
||||
assert item1.path == item2.path, "Deferred items have different paths"
|
||||
yield (item1.path, compare_items(item1, item2))
|
||||
|
||||
|
||||
class MetadataCollector:
|
||||
|
|
|
|||
Loading…
Reference in a new issue