apple/turicreate

trailing slash prevents sarray loading from s3

Open

#3109 aperta il 9 apr 2020

Vedi su GitHub
 (0 commenti) (0 reazioni) (0 assegnatari)C++ (1161 fork)batch import
S3good first issue

Metriche repository

Star
 (11.135 star)
Metriche merge PR
 (Nessuna PR mergiata in 30 g)

Descrizione

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

Guida contributor