From 5d61082fdc815a3dd58d6f7c7d3efcd7c051870c Mon Sep 17 00:00:00 2001 From: Yihang Wang Date: Wed, 3 Jul 2024 00:12:43 +0800 Subject: [PATCH] feat: Update main.go to remove unnecessary query parameters in S3 file 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 --- examples/load-s3-file-as-input/main.go | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/load-s3-file-as-input/main.go b/examples/load-s3-file-as-input/main.go index f50d9d0..e45991c 100644 --- a/examples/load-s3-file-as-input/main.go +++ b/examples/load-s3-file-as-input/main.go @@ -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=********************************************", ) {