diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2016-10-28 14:46:11 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2016-10-28 14:46:11 -0700 |
commit | e57e29b96b75ff7fc04abb7f9db73920b2a5894a (patch) | |
tree | bd54ab59d6c7606efdaf8fa8d07a8b79f594c0a4 /lib/chef/node.rb | |
parent | 95dd383a6059d896e5c587b6a6eb65195e144a28 (diff) | |
download | chef-e57e29b96b75ff7fc04abb7f9db73920b2a5894a.tar.gz |
add attribute_changed hook to event handlers
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/node.rb')
-rw-r--r-- | lib/chef/node.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/node.rb b/lib/chef/node.rb index 34a92d325b..7351a7bfa5 100644 --- a/lib/chef/node.rb +++ b/lib/chef/node.rb @@ -78,7 +78,7 @@ class Chef @policy_name = nil @policy_group = nil - @attributes = Chef::Node::Attribute.new({}, {}, {}, {}) + @attributes = Chef::Node::Attribute.new({}, {}, {}, {}, self) @run_state = {} end |