provider/fastly: Change error text on findService

This commit is contained in:
Minku Lee 2016-08-31 12:53:56 +09:00
parent 70d9fe8db3
commit 59ff858c16
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 {