From 83d23b3ae816d1902a9066dcdccaf5274899bcda Mon Sep 17 00:00:00 2001 From: greatroar <61184462+greatroar@users.noreply.github.com> Date: Wed, 7 Dec 2022 22:36:52 +0100 Subject: [PATCH] Changelog for ENOSPC handling bug --- changelog/unreleased/issue-3336 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 changelog/unreleased/issue-3336 diff --git a/changelog/unreleased/issue-3336 b/changelog/unreleased/issue-3336 new file mode 100644 index 000000000..b22ab244f --- /dev/null +++ b/changelog/unreleased/issue-3336 @@ -0,0 +1,12 @@ +Bugfix: SFTP backend now checks for disk space + +A backup to an SFTP backend would spew repeated SSH_FX_FAILURE messages when +the remote disk is full. Restic now reports "sftp: no space left on device" +and exits immediately when it detects this condition. + +A fix for this issue was promised in restic 0.12.1, but the fix itself +contained a bug that prevented it from triggering. + +https://github.com/restic/restic/issues/3336 +https://github.com/restic/restic/pull/3345 +https://github.com/restic/restic/pull/4075