rclone: Make concurrent connections configurable

This commit is contained in:
Alexander Neumann 2018-03-24 18:37:36 +01:00
parent 0b776e63e7
commit c43c94776b
3 changed files with 10 additions and 6 deletions

View file

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