We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If we transfer a file with size N to add_piece and ask to write M bytes (where N > M)
Then the function will write N bytes. It seems like overkill.
I think add_piece should write M bytes only
add_piece function writes piece_size bytes
If you pass /dev/zero file, then the copy will be infinite.
Here
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
If we transfer a file with size N to add_piece and ask to write M bytes (where N > M)
Then the function will write N bytes. It seems like overkill.
I think add_piece should write M bytes only
Acceptance criteria
add_piece function writes piece_size bytes
Risks + pitfalls
If you pass /dev/zero file, then the copy will be infinite.
Where to begin
Here
The text was updated successfully, but these errors were encountered: