Merge pull request #8567 from premist/resource-fastly-error-msg

provider/fastly: Change error text on findService
This commit is contained in:
Mitchell Hashimoto 2016-08-31 10:40:46 -07:00 committed by GitHub
commit fe8922dc13
1 changed files with 1 additions and 1 deletions

View File

@ -1519,7 +1519,7 @@ func findService(id string, meta interface{}) (*gofastly.Service, error) {
l, err := conn.ListServices(&gofastly.ListServicesInput{})
if err != nil {
return nil, fmt.Errorf("[WARN] Error listing services when deleting Fastly Service (%s): %s", id, err)
return nil, fmt.Errorf("[WARN] Error listing services (%s): %s", id, err)
}
for _, s := range l {