We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a75d3b commit 925357dCopy full SHA for 925357d
src/lightning/data/streaming/downloader.py
@@ -59,7 +59,7 @@ def download_file(self, remote_filepath: str, local_filepath: str) -> None:
59
with FileLock(local_filepath + ".lock", timeout=0):
60
if self._s5cmd_available:
61
proc = subprocess.Popen(
62
- f"s5cmd --numworkers 64 cp {remote_filepath} {local_filepath}",
+ f"s5cmd cp {remote_filepath} {local_filepath}",
63
shell=True,
64
stdout=subprocess.PIPE,
65
)
0 commit comments