Skip to content

Commit

Permalink
Only try to playback paths below __root__ (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
viktordick authored Oct 7, 2024
1 parent 8ea661f commit bfd039b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
23.2.1.dev0
* Only try to playback differing paths below __root__

23.2.0
* Fixed a bug where zodbsync was writing `source`-files into frozen
layers
Expand Down
4 changes: 3 additions & 1 deletion perfact/zodbsync/subcommand.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,9 @@ def wrapper(self, *args, **kwargs):
assert not conflicts, "Change in unstaged files, aborting"

# Make unique and sort
self.paths = sorted(set(files))
self.paths = sorted({
file for file in files if file.startswith(self.sync.site)
})

self._playback_paths(self.paths)

Expand Down

0 comments on commit bfd039b

Please sign in to comment.