FTP Server without support for offsets

I have my own specialized storage "backend" written in rust.
In order to use it with rclone I have decided to make a FTP server storing data directly in my storage backend and using the FTP backend in rclone.
However, it does not support accessing files with offsets. Unfortuntaly I couldn't yet find out how to stop rclone from trying to download the same file multiple times using multithreading. Is there a way to turn this off?

2024/07/25 21:47:06 ERROR : sometestfile.mkv: Failed to copy: multi-thread copy: failed to open source: couldn't reopen file with offset and limit: open: 502 Not supported by the selected storage back-end.
2024/07/25 21:47:06 ERROR : Attempt 1/3 failed with 1 errors and: multi-thread copy: failed to open source: couldn't reopen file with offset and limit: open: 502 Not supported by the selected storage back-end.
2024/07/25 21:47:07 ERROR : sometestfile.mkv: Failed to copy: multi-thread copy: failed to open source: couldn't reopen file with offset and limit: open: 502 Not supported by the selected storage back-end.
2024/07/25 21:47:07 ERROR : Attempt 2/3 failed with 1 errors and: multi-thread copy: failed to open source: couldn't reopen file with offset and limit: open: 502 Not supported by the selected storage back-end.
2024/07/25 21:47:08 ERROR : sometestfile.mkv: Failed to copy: multi-thread copy: failed to open source: couldn't reopen file with offset and limit: open: 502 Not supported by the selected storage back-end.
2024/07/25 21:47:08 ERROR : Attempt 3/3 failed with 1 errors and: multi-thread copy: failed to open source: couldn't reopen file with offset and limit: open: 502 Not supported by the selected storage back-end.
2024/07/25 21:47:08 Failed to copy: multi-thread copy: failed to open source: couldn't reopen file with offset and limit: open: 502 Not supported by the selected storage back-end.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.