yuqi1129 commented on code in PR #5225: URL: https://github.com/apache/gravitino/pull/5225#discussion_r1814536267
########## clients/client-python/gravitino/filesystem/gvfs.py: ########## @@ -762,6 +769,13 @@ def _strip_storage_protocol(storage_type: StorageType, path: str): if storage_type == StorageType.LOCAL: return path[len(f"{StorageType.LOCAL.value}:") :] + # OSS has different behavior than S3 and GCS, if we do not remove the + # protocol, it will always return an empty array. + if storage_type == StorageType.OSS: Review Comment: Added. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@gravitino.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org