diff options
author | Kyleen MacGugan <kmacgugan@chef.io> | 2015-09-24 23:13:42 -0700 |
---|---|---|
committer | Kyleen MacGugan <kmacgugan@chef.io> | 2015-10-21 16:29:50 -0700 |
commit | 4fe540a7aac53afa61ada419f76432052a3a28ec (patch) | |
tree | c86ddd0307fc91077192ad9e918afb6f429ef887 /lib/chef/event_dispatch | |
parent | a6c2c27021f9290c081e61f9af1a2f19e154f90c (diff) | |
download | chef-4fe540a7aac53afa61ada419f76432052a3a28ec.tar.gz |
Added run list expansion json conversion. Creates a json tree from the run list expansion trace.kyleen/addExpandedRunList
Added event to report expanded run list
Updated json conversion to use chef compat json.
Remove RunListExpansion from JsonCompat
Diffstat (limited to 'lib/chef/event_dispatch')
-rw-r--r-- | lib/chef/event_dispatch/base.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/chef/event_dispatch/base.rb b/lib/chef/event_dispatch/base.rb index 1c9a58be23..585a3db174 100644 --- a/lib/chef/event_dispatch/base.rb +++ b/lib/chef/event_dispatch/base.rb @@ -384,6 +384,9 @@ class Chef def deprecation(message, location=caller(2..2)[0]) end + def run_list_expanded(run_list_expansion) + end + # An uncategorized message. This supports the case that a user needs to # pass output that doesn't fit into one of the callbacks above. Note that # there's no semantic information about the content or importance of the |