You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since upgrading from v.0.6.4 to v0.6.8, incremental backups do not work. Full snapshots are always sent without any warning message.
With a quick look it seems to me, that the culprit is commit 8e54abc.
It looks like that with this: if self.destination is not None: [snip] else: source_parent_path = os.path.join(self.source.container_subvolume_path, str(self.source.snapshots[0].name))
...the source_parent_path is only set if there are no destination snapshots.
The text was updated successfully, but these errors were encountered:
Hi.
Since upgrading from v.0.6.4 to v0.6.8, incremental backups do not work. Full snapshots are always sent without any warning message.
With a quick look it seems to me, that the culprit is commit 8e54abc.
It looks like that with this:
if self.destination is not None: [snip] else: source_parent_path = os.path.join(self.source.container_subvolume_path, str(self.source.snapshots[0].name))
...the source_parent_path is only set if there are no destination snapshots.
The text was updated successfully, but these errors were encountered: