Merge pull request #2133 from hashicorp/b-volumn-error-params

go vet caught wrong number of params passed to error message
This commit is contained in:
Sander van Harmelen 2015-05-29 10:38:20 +02:00
commit 2e1463ba0f
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ func resourceAwsVolumeAttachmentCreate(d *schema.ResourceData, meta interface{})
_, err = stateConf.WaitForState() _, err = stateConf.WaitForState()
if err != nil { if err != nil {
return fmt.Errorf( return fmt.Errorf(
"Error waiting for Volume (%s) to attach to Instance: %s, error:", "Error waiting for Volume (%s) to attach to Instance: %s, error: %s",
vID, iID, err) vID, iID, err)
} }