update CHANGELOG

This commit is contained in:
Mitchell Hashimoto 2016-10-23 14:28:08 -07:00
parent 83b1c82e93
commit 0c3161083c
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
2 changed files with 2 additions and 1 deletions

View File

@ -20,6 +20,7 @@ IMPROVEMENTS:
BUG FIXES:
* core: Resources suffixed with 'panic' won't falsely trigger crash detection. [GH-9395]
* provider/aws: Fix issue importing AWS Instances and setting the correct `associate_public_ip_address` value [GH-9453]
* provider/aws: Fix issue with updating ElasticBeanstalk environment variables [GH-9259]
* provider/aws: Allow zero value for `scaling_adjustment` in `aws_autoscaling_policy` when using `SimpleScaling` [GH-8893]

View File

@ -244,7 +244,7 @@ func (g *Graph) walk(walker GraphWalker) error {
// Allow the walker to change our tree if needed. Eval,
// then callback with the output.
log.Printf("[DEBUG] vertex %s.%s: evaluating", path, dag.VertexName(v))
log.Printf("[DEBUG] vertex '%s.%s': evaluating", path, dag.VertexName(v))
tree = walker.EnterEvalTree(v, tree)
output, err := Eval(tree, vertexCtx)
if rerr = walker.ExitEvalTree(v, output, err); rerr != nil {