From 1c775feeccabf2373607703683b598beeb45f77b Mon Sep 17 00:00:00 2001 From: Michael Eischer Date: Wed, 31 Jul 2024 20:49:44 +0200 Subject: [PATCH] add changelog for cancelation delay --- changelog/unreleased/issue-4957 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 changelog/unreleased/issue-4957 diff --git a/changelog/unreleased/issue-4957 b/changelog/unreleased/issue-4957 new file mode 100644 index 000000000..d18e28ec9 --- /dev/null +++ b/changelog/unreleased/issue-4957 @@ -0,0 +1,10 @@ +Bugfix: Fix delayed cancelation of some commands + +Since restic 0.17.0, some commands no longer promptly reacted to being canceled +via Ctrl-C (SIGINT) and continued to run for a limited amount of time. The most +affected commands were `diff`,`find`, `ls`, `stats` and `rewrite`. + +This has been fixed. + +https://github.com/restic/restic/issues/4957 +https://github.com/restic/restic/pull/4960