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 b839d2a commit 44fbf1aCopy full SHA for 44fbf1a
1 file changed
sftp/common/usr/local/bin/docker-sftp-entrypoint
@@ -173,9 +173,8 @@ function setupS3FS() {
173
S3FS_ARGS="${S3FS_ARGS} -o nocopyapi"
174
fi
175
176
-
177
- S3FS_ARGS="${S3FS_ARGS} -o parallel_count=${S3FS_PARALLEL_COUNT:-"15"}"
178
- S3FS_ARGS="${S3FS_ARGS} -o multipart_size=${S3FS_MULTIPART_SIZE:-"128"}"
+ S3FS_ARGS="${S3FS_ARGS} -o parallel_count=$((${S3FS_PARALLEL_COUNT:-"15"}))"
+ S3FS_ARGS="${S3FS_ARGS} -o multipart_size=$((${S3FS_MULTIPART_SIZE:-"128"}))"
179
180
echo "Start with s3fs ${DEBUG_OPTS} ${S3FS_ARGS} -o passwd_file=${S3FS_AUTHFILE} -o url=${AWS_ENDPOINT} -o endpoint=${AWS_DEFAULT_REGION}"
181
0 commit comments