Merge pull request #3849 from hashicorp/b-fix-kinesis-firehose-vet

provider/aws: Fix error format in Kinesis Firehose
This commit is contained in:
James Nugent 2015-11-10 16:55:53 -05:00
commit 06d493cfb6
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ func resourceAwsKinesisFirehoseDeliveryStreamUpdate(d *schema.ResourceData, meta
_, err := conn.UpdateDestination(destOpts)
if err != nil {
return fmt.Errorf(
"Error Updating Kinesis Firehose Delivery Stream: %s",
"Error Updating Kinesis Firehose Delivery Stream: \"%s\"\n%s",
sn, err)
}