2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-15 15:22:22 +00:00
restic/changelog/0.15.0_2023-01-12/issue-2152

12 lines
474 B
Plaintext
Raw Permalink Normal View History

2023-01-08 14:34:30 +00:00
Enhancement: Make `init` open only one connection for the SFTP backend
2023-01-08 14:34:30 +00:00
The `init` command using the SFTP backend used to connect twice to the
repository. This could be inconvenient if the user must enter a password,
or cause `init` to fail if the server does not correctly close the first SFTP
connection.
2023-01-08 14:34:30 +00:00
This has now been fixed by reusing the first/initial SFTP connection opened.
https://github.com/restic/restic/issues/2152
https://github.com/restic/restic/pull/3882