2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-28 22:50:48 +00:00

rclone: use configured number of connections during create

This commit is contained in:
Michael Eischer 2020-09-19 19:11:28 +02:00
parent 60a5c35de9
commit 8c36317b71

View File

@ -290,7 +290,7 @@ func Create(cfg Config) (*Backend, error) {
}
restConfig := rest.Config{
Connections: 20,
Connections: cfg.Connections,
URL: url,
}