We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0705c29 commit a7cdb70Copy full SHA for a7cdb70
src/backend/src/filesystem/ll_operations/ll_write.js
@@ -53,7 +53,7 @@ class LLWriteBase extends LLFilesystemOperation {
53
const storage = svc_mountpoint.get_storage();
54
55
bucket ??= config.s3_bucket;
56
- bucket_region ??= config.s3_region;
+ bucket_region ??= config.s3_region ?? config.region;
57
58
let upload_tracker = new UploadProgressTracker();
59
@@ -251,7 +251,7 @@ class LLCWrite extends LLWriteBase {
251
this.field('fsentry-uid', uid);
252
253
// determine bucket region
254
- let bucket_region = config.s3_region;
+ let bucket_region = config.s3_region ?? config.region;
255
let bucket = config.s3_bucket;
256
257
this.checkpoint('before acl');
0 commit comments