Skip to content

Commit

Permalink
feat: Update main.go to remove unnecessary query parameters in S3 fil…
Browse files Browse the repository at this point in the history
…e loading

This commit removes the "bucket" query parameter from the S3 file loading URL in the main.go file. The parameter is no longer needed and can be safely removed.

Update main.go to remove unnecessary query parameters in S3 file loading
  • Loading branch information
WangYihang committed Jul 2, 2024
1 parent b2b4ff8 commit 5d61082
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion examples/load-s3-file-as-input/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ func main() {
for line := range utils.Cat(
"s3://example/shakespeare.txt" +
"?region=us-west-1" +
"&bucket=default" +
"&access_key=********************" +
"&secret_key=********************************************",
) {
Expand Down

0 comments on commit 5d61082

Please sign in to comment.