Skip to content

Commit

Permalink
Fixing error message to be clearer
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanrainer committed Jun 15, 2022
1 parent ad59768 commit a4740d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cloud/cloud.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func createCloud(awsRoleArn string) (Cloud, error) {
metadata, err := metadataProvider.getMetadata()

if err != nil {
return nil, fmt.Errorf("could not get metadata from AWS: %v", err)
return nil, fmt.Errorf("could not get metadata: %v", err)
}

return &cloud{
Expand Down

0 comments on commit a4740d6

Please sign in to comment.