Skip to content

Commit dca2795

Browse files
Updated zip and removed print statement
1 parent 89b992a commit dca2795

4 files changed

Lines changed: 0 additions & 3 deletions

File tree

48 Bytes
Binary file not shown.
Binary file not shown.
204 Bytes
Binary file not shown.

lambda-extensions/utils/awsutils.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import (
44
"context"
55
"io"
66
"os"
7-
"fmt"
87
"github.com/aws/aws-sdk-go-v2/config"
98
"github.com/aws/aws-sdk-go-v2/feature/s3/manager"
109
"github.com/aws/aws-sdk-go-v2/service/s3"
@@ -17,7 +16,6 @@ func init() {
1716
if !found {
1817
awsRegion = os.Getenv("AWS_REGION")
1918
}
20-
fmt.Println("awsRegion:-->", awsRegion)
2119

2220
// Load AWS default config with region
2321
cfg, err := config.LoadDefaultConfig(context.TODO(),
@@ -26,7 +24,6 @@ func init() {
2624
if err != nil {
2725
panic("unable to load AWS SDK config, " + err.Error())
2826
}
29-
fmt.Printf("CFG --> %+v\n", cfg)
3027

3128
// Create S3 client
3229
s3Client := s3.NewFromConfig(cfg)

0 commit comments

Comments
 (0)