1
0
mirror of https://github.com/restic/restic.git synced 2024-06-23 07:36:38 +02: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,
}