Skip to content

Commit dab81ec

Browse files
committed
fix: fix path handling difference between MinIO and S3
This commit handles an inconsistency between MinIO and S3, if the files reside in the buckets top-level directory. MinIO doesn't use a database as opposed to S3. That's the reason, why leading slashes are not preserved. Fo S3 on the other hand, we need to manually strip them. -> minio/minio#17356 (comment)
1 parent f7bbce5 commit dab81ec

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

manabi/filesystem.py

+10-1
Original file line numberDiff line numberDiff line change
@@ -176,16 +176,25 @@ def __init__(
176176
*,
177177
cb_hook_config: Optional[CallbackHookConfig] = None,
178178
):
179+
self.provider: ManabiS3Provider
179180
super().__init__(path, environ)
180181
self.s3 = s3
181182
self.bucket_name = bucket_name
182183
self._cb_config = cb_hook_config
183184
self._token = environ["manabi.token"]
184185
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+
185195
self.file_path = file_path
186196
self.file_obj = self.s3.get_object(Bucket=self.bucket_name, Key=self.file_path)
187197
self.name = Path(self.path).name
188-
self.provider: ManabiS3Provider
189198

190199
def support_etag(self):
191200
return True

0 commit comments

Comments
 (0)