apple/turicreate

trailing slash prevents sarray loading from s3

開放

#3,109 建立於 2020年4月9日

 (0 則留言) (0 個反應) (0 位負責人)C++ (1,161 個分叉)batch import
S3good first issue

倉庫指標

星標
 (11,135 顆星)
PR 合併指標
 (30 天內沒有已合併 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

貢獻者指南