mirror of
https://github.com/rclone/rclone.git
synced 2026-05-12 10:03:35 -04:00
The temp directory name used random.String(2) giving only 676 possible values. When multiple concurrent tests started in the same second, they shared the same timestamp prefix, causing name collisions and shared temp directories. This led to lock file conflicts, listing file races, and file deletion errors. Increase to random.String(8) to make collisions effectively impossible.