apple/turicreate

trailing slash prevents sarray loading from s3

オープン

#3,109 opened on 2020/04/09

 (0 件のコメント) (0 件のリアクション) (0 人の担当者)C++ (1,161 件のフォーク)batch import
S3good first issue

Repository metrics

Stars
 (11,135 個のスター)
PR merge metrics
 (30d に merged PR はありません)

説明

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

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