2
2
mirror of https://github.com/octoleo/restic.git synced 2025-01-23 23:28:32 +00:00

9 lines
382 B
Plaintext
Raw Normal View History

2024-08-30 14:58:32 +02:00
Bugfix: Fix delayed cancellation of certain commands
2024-07-31 20:49:44 +02:00
2024-08-30 14:58:32 +02:00
Since restic 0.17.0, some commands did not immediately respond to cancellation
via Ctrl-C (SIGINT) and continued running for a short period. The most affected
2024-08-31 17:28:24 +02:00
commands were `diff`,`find`, `ls`, `stats` and `rewrite`. This is now resolved.
2024-07-31 20:49:44 +02:00
https://github.com/restic/restic/issues/4957
https://github.com/restic/restic/pull/4960