Skip to content

Commit 791c4fa

Browse files
jbuseckemaxrjones
andauthored
Add comment on skip_signature=True in the s3 store example (#731)
* Add comment on skip_signature=True in the s3 store example I am refactoring some of my code to virtualize NASA data to v2 at the moment, and just spent a bunch of minutes debugging a permission denied error due to me just copy/pasting the code in the example. Wondering if it would be instructive for users to know that this option is specific to the data used. * Update docs/migration_guide.md --------- Co-authored-by: Max Jones <14077947+maxrjones@users.noreply.github.com>
1 parent 6adb262 commit 791c4fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/migration_guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ for reading the original data, but some parsers may accept an empty [ObjectStore
3939
store = S3Store(
4040
bucket=bucket,
4141
region="us-west-2",
42-
skip_signature=True
42+
skip_signature=True # required for this specific example data because the data is in a public bucket, so the S3Store shouldn't fetch and use credentials.
4343
)
4444
registry = ObjectStoreRegistry({f"s3://{bucket}": store})
4545
parser = HDFParser()

0 commit comments

Comments
 (0)