Skip to content

Commit 0f899fe

Browse files
authored
Update .config/s3.config.php - don't set defaults for new s3 values
Signed-off-by: Jesse Hitch <[email protected]>
1 parent 040b741 commit 0f899fe

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.config/s3.config.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
'use_path_style' => $use_path == true && strtolower($use_path) !== 'false',
2121
// required for older protocol versions
2222
'legacy_auth' => $use_legacyauth == true && strtolower($use_legacyauth) !== 'false',
23-
'concurrency' => getenv('OBJECTSTORE_S3_CONCURRENCY') ?: 5,
24-
'proxy' => getenv('OBJECTSTORE_S3_PROXY') ?: false,
25-
'timeout' => getenv('OBJECTSTORE_S3_TIMEOUT') ?: 15,
26-
'uploadPartSize' => getenv('OBJECTSTORE_S3_UPLOADPARTSIZE') ?: 524288000,
27-
'putSizeLimit' => getenv('OBJECTSTORE_S3_PUTSIZELIMIT') ?: 104857600,
28-
'version' => getenv('OBJECTSTORE_S3_VERSION') ?: "latest",
29-
'verify_bucket_exists' => getenv('OBJECTSTORE_S3_VERIFY_BUCKET_EXISTS') ?: true
23+
'concurrency' => getenv('OBJECTSTORE_S3_CONCURRENCY') ?: '',
24+
'proxy' => getenv('OBJECTSTORE_S3_PROXY') ?: '',
25+
'timeout' => getenv('OBJECTSTORE_S3_TIMEOUT') ?: '',
26+
'uploadPartSize' => getenv('OBJECTSTORE_S3_UPLOADPARTSIZE') ?:'',
27+
'putSizeLimit' => getenv('OBJECTSTORE_S3_PUTSIZELIMIT') ?: '',
28+
'version' => getenv('OBJECTSTORE_S3_VERSION') ?: '',
29+
'verify_bucket_exists' => getenv('OBJECTSTORE_S3_VERIFY_BUCKET_EXISTS') ?: ''
3030
)
3131
)
3232
);

0 commit comments

Comments
 (0)