File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -176,16 +176,25 @@ def __init__(
176
176
* ,
177
177
cb_hook_config : Optional [CallbackHookConfig ] = None ,
178
178
):
179
+ self .provider : ManabiS3Provider
179
180
super ().__init__ (path , environ )
180
181
self .s3 = s3
181
182
self .bucket_name = bucket_name
182
183
self ._cb_config = cb_hook_config
183
184
self ._token = environ ["manabi.token" ]
184
185
self .path = path
186
+
187
+ # if the files reside in the buckets top-level directory, there is a difference
188
+ # between MinIO and S3. MinIO doesn't use a database as opposed to S3. That's
189
+ # the reason, why leading slashes are not preserved. For S3 on the other hand,
190
+ # we need to manually strip them.
191
+ # -> https://github.com/minio/minio/issues/17356#issuecomment-1578787168
192
+ if self .provider .root_folder_path == "/" :
193
+ file_path = file_path .lstrip ("/" )
194
+
185
195
self .file_path = file_path
186
196
self .file_obj = self .s3 .get_object (Bucket = self .bucket_name , Key = self .file_path )
187
197
self .name = Path (self .path ).name
188
- self .provider : ManabiS3Provider
189
198
190
199
def support_etag (self ):
191
200
return True
You can’t perform that action at this time.
0 commit comments