Hashcode-Ankit commented on code in PR #981:
URL: https://github.com/apache/iceberg-go/pull/981#discussion_r3215010241
##########
catalog/glue/glue.go:
##########
@@ -145,6 +145,17 @@ type Catalog struct {
}
// NewCatalog creates a new instance of glue.Catalog with the given options.
+// To override the AWS config below is an example:
+//
+// import awshttp "github.com/aws/aws-sdk-go-v2/aws/transport/http"
+//
+// client := awshttp.NewBuildableClient().WithTransportOptions(func(t
*http.Transport) {
+// t.IdleConnTimeout = 90 * time.Second
+// ...other transport options...
+// })
+// awsCfg.HTTPClient = client
Review Comment:
should we create awsConfig in example or a ref is fine?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]