Merge pull request #3723 from justinsb/consistent_error_messaging

Automatic merge from submit-queue.

Fix error message in StorageBucketIam task
This commit is contained in:
Kubernetes Submit Queue 2017-10-29 15:02:25 -07:00 committed by GitHub
commit efcf7e0bc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ func (e *StorageBucketIam) Find(c *fi.Context) (*StorageBucketIam, error) {
if gce.IsNotFound(err) {
policy = &storage.Policy{}
} else {
return nil, fmt.Errorf("error querying GCS IAM policy for gs://%s: %v", bucket, err)
return nil, fmt.Errorf("error querying GCS IAM policy for gs://%s for %s: %v", bucket, entity, err)
}
}