From 62be79eb0f8dc6229fa8c816278951e532729bf6 Mon Sep 17 00:00:00 2001 From: Almir Cunha Date: Wed, 3 Jul 2024 13:14:00 -0300 Subject: [PATCH] Do not lower connection URL --- azuredevops/connection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azuredevops/connection.go b/azuredevops/connection.go index eb76f53c..be46f4b0 100644 --- a/azuredevops/connection.go +++ b/azuredevops/connection.go @@ -53,7 +53,7 @@ func CreateBasicAuthHeaderValue(username, password string) string { } func normalizeUrl(url string) string { - return strings.ToLower(strings.TrimRight(url, "/")) + return strings.TrimRight(url, "/") } func (connection *Connection) GetClientByResourceAreaId(ctx context.Context, resourceAreaID uuid.UUID) (*Client, error) {