apple/turicreate

trailing slash prevents sarray loading from s3

Open

#3,109 opened on 2020年4月9日

GitHub で見る
 (0 comments) (0 reactions) (0 assignees)C++ (11,135 stars) (1,161 forks)batch import
S3good first issue

説明

trailing slash will make sarray loading from s3 fail.

import turicreate as tc
tc.config.set_runtime_config("TURI_FILEIO_INSECURE_SSL_CERTIFICATE_CHECKS", 1)
gui = tc.SArray([1])

works with

gui = tc.load_sarray("s3://guihao/tiny_array")

but not with

gui = tc.load_sarray("s3://guihao/tiny_array/")

Surfaced by #3106

コントリビューターガイド

trailing slash prevents sarray loading from s3 · apple/turicreate#3109 | Good First Issue