mirror of
https://github.com/rclone/rclone.git
synced 2025-03-06 02:01:49 +08:00

When using `--no-traverse` the march routines call NewObject on each potential object in the destination. The concurrency limiter was accidentally arranged so that there were `--checkers` * `--checkers` NewObject calls going on at once. This became obvious when using the sftp backend which used too many connections. Fixes #5824