Merge pull request #3849 from hashicorp/b-fix-kinesis-firehose-vet
provider/aws: Fix error format in Kinesis Firehose
This commit is contained in:
commit
06d493cfb6
|
@ -192,7 +192,7 @@ func resourceAwsKinesisFirehoseDeliveryStreamUpdate(d *schema.ResourceData, meta
|
||||||
_, err := conn.UpdateDestination(destOpts)
|
_, err := conn.UpdateDestination(destOpts)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf(
|
return fmt.Errorf(
|
||||||
"Error Updating Kinesis Firehose Delivery Stream: %s",
|
"Error Updating Kinesis Firehose Delivery Stream: \"%s\"\n%s",
|
||||||
sn, err)
|
sn, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue