update CHANGELOG
This commit is contained in:
parent
83b1c82e93
commit
0c3161083c
|
@ -20,6 +20,7 @@ IMPROVEMENTS:
|
||||||
|
|
||||||
BUG FIXES:
|
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 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: 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]
|
* provider/aws: Allow zero value for `scaling_adjustment` in `aws_autoscaling_policy` when using `SimpleScaling` [GH-8893]
|
||||||
|
|
|
@ -244,7 +244,7 @@ func (g *Graph) walk(walker GraphWalker) error {
|
||||||
|
|
||||||
// Allow the walker to change our tree if needed. Eval,
|
// Allow the walker to change our tree if needed. Eval,
|
||||||
// then callback with the output.
|
// 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)
|
tree = walker.EnterEvalTree(v, tree)
|
||||||
output, err := Eval(tree, vertexCtx)
|
output, err := Eval(tree, vertexCtx)
|
||||||
if rerr = walker.ExitEvalTree(v, output, err); rerr != nil {
|
if rerr = walker.ExitEvalTree(v, output, err); rerr != nil {
|
||||||
|
|
Loading…
Reference in New Issue