From 9d1b890e5a512a1c825ff9d74280056ad600134f Mon Sep 17 00:00:00 2001 From: Edoardo Rosa <6991986+notdodo@users.noreply.github.com> Date: Sun, 9 Jun 2024 15:52:03 +0200 Subject: [PATCH] enh: complete logging refactoring to charmbracelet/log --- pkg/connector/services/aws/aws.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/connector/services/aws/aws.go b/pkg/connector/services/aws/aws.go index ea1b3ac..0ef9e1a 100644 --- a/pkg/connector/services/aws/aws.go +++ b/pkg/connector/services/aws/aws.go @@ -31,9 +31,9 @@ func InitAWSConfiguration(profile string, awsEndpoint string) (awsc *AWSConfig) }), ) cfg.RetryMode = aws.RetryModeStandard - // if awsEndpoint != "" { - // cfg.BaseEndpoint = aws.String(awsEndpoint) - // } + if awsEndpoint != "" { + cfg.BaseEndpoint = aws.String(awsEndpoint) + } awsc = &AWSConfig{Profile: profile, Config: cfg, logger: logging.GetLogManager()} SetActions() // Get the available AWS regions dynamically