Skip to content

Commit

Permalink
Do not lower connection URL
Browse files Browse the repository at this point in the history
  • Loading branch information
almirmcunhajr committed Jul 3, 2024
1 parent 5b31862 commit 62be79e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azuredevops/connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 62be79e

Please sign in to comment.