We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20fedd8 commit 77b4a3eCopy full SHA for 77b4a3e
python/idsse_common/idsse/common/aws_utils.py
@@ -94,9 +94,9 @@ def aws_cp(self,
94
95
# if concurrency and/or chunk_size options were provided, append to s5cmd before paths
96
if concurrency:
97
- commands += ['--concurrency', concurrency]
+ commands += ['--concurrency', str(concurrency)]
98
if chunk_size:
99
- commands += ['--part_size', chunk_size]
+ commands += ['--part-size', str(chunk_size)]
100
commands += [path, dest] # finish the command list with the src and destination
101
102
exec_cmd(commands)
0 commit comments