Merge pull request #4960 from MichaelEischer/reduce-cancelation-delays

Add more checks for canceled contexts
This commit is contained in:
Michael Eischer
2024-08-03 18:23:20 +02:00
committed by GitHub
18 changed files with 105 additions and 11 deletions

View File

@@ -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