Merge pull request #15804 from 0o001/master

fix: error message typo
This commit is contained in:
Kubernetes Prow Robot 2023-08-20 10:59:21 -07:00 committed by GitHub
commit e3645f98de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2472,7 +2472,7 @@ func (c *awsCloudImplementation) AccountInfo() (string, string, error) {
response, err := c.sts.GetCallerIdentity(request)
if err != nil {
return "", "", fmt.Errorf("error geting AWS account ID: %v", err)
return "", "", fmt.Errorf("error getting AWS account ID: %v", err)
}
arn, err := arn.Parse(aws.StringValue(response.Arn))