2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-31 16:10:49 +00:00
restic/changelog/0.12.0_2021-02-14/issue-3151

10 lines
433 B
Plaintext
Raw Normal View History

Bugfix: Don't create invalid snapshots when `backup` is interrupted
2020-12-28 20:06:22 +00:00
When canceling a backup run at a certain moment it was possible that
2020-12-28 20:06:22 +00:00
restic created a snapshot with an invalid "null" tree. This caused
`check` and other operations to fail. The `backup` command now properly
handles interruptions and never saves a snapshot when interrupted.
2020-12-28 20:06:22 +00:00
https://github.com/restic/restic/issues/3151
https://github.com/restic/restic/pull/3164