Merge pull request #2932 from MichaelEischer/proper-rclone-create

Call rclone.Create to create a new repository for the rclone backend
This commit is contained in:
Alexander Neumann
2020-10-09 21:29:15 +02:00
committed by GitHub
2 changed files with 3 additions and 2 deletions

View File

@@ -267,6 +267,7 @@ func Open(cfg Config, lim limiter.Limiter) (*Backend, error) {
restBackend, err := rest.Open(restConfig, debug.RoundTripper(be.tr))
if err != nil {
_ = be.Close()
return nil, err
}
@@ -289,7 +290,7 @@ func Create(cfg Config) (*Backend, error) {
}
restConfig := rest.Config{
Connections: 20,
Connections: cfg.Connections,
URL: url,
}