Skip to content

Commit

Permalink
fs: change default chunk size to 64k
Browse files Browse the repository at this point in the history
  • Loading branch information
doronz88 committed Apr 12, 2022
1 parent 79ccd3d commit fb199a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rpcclient/rpcclient/fs.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def __repr__(self):


class File(Allocated):
CHUNK_SIZE = 1024
CHUNK_SIZE = 1024 * 64

def __init__(self, client, fd: int):
"""
Expand Down

0 comments on commit fb199a1

Please sign in to comment.