From 29a8f9296738e8e4d7ed9921169c62f940d30477 Mon Sep 17 00:00:00 2001 From: Michael Eischer Date: Sat, 30 Apr 2022 13:36:47 +0200 Subject: [PATCH] Add changelog for local/sftp connection limit --- changelog/unreleased/pull-3475 | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 changelog/unreleased/pull-3475 diff --git a/changelog/unreleased/pull-3475 b/changelog/unreleased/pull-3475 new file mode 100644 index 000000000..f4cb0465c --- /dev/null +++ b/changelog/unreleased/pull-3475 @@ -0,0 +1,8 @@ +Enhancement: Allow limiting IO concurrency for local and sftp backend + +restic did not support limiting the IO concurrency / number of connections for +accessing repositories stored using the local or sftp backend. The number of +connections is now limited as for other backends. It can be configured via the +the `-o local.connections=2` and `-o sftp.connections=5` options. + +https://github.com/restic/restic/pull/3475