diff options
author | Ivan Larionov <ivan.larionov@skype.net> | 2014-10-18 04:44:49 +0400 |
---|---|---|
committer | Ivan Larionov <ivan.larionov@skype.net> | 2014-10-18 04:44:49 +0400 |
commit | 84447d69f1c963e6579f9716878bff8de3aac396 (patch) | |
tree | b2638aee46e93f233bb2ca411a80b5fad440fbc9 /lib/chef | |
parent | 9b3e925188a41bbea954429ac81ffdf65e936eda (diff) | |
download | chef-84447d69f1c963e6579f9716878bff8de3aac396.tar.gz |
Empty run_list should result in empty array when using node.to_hash.
Diffstat (limited to 'lib/chef')
-rw-r--r-- | lib/chef/node.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/node.rb b/lib/chef/node.rb index 327da67b1c..5f788af4d4 100644 --- a/lib/chef/node.rb +++ b/lib/chef/node.rb @@ -397,7 +397,7 @@ class Chef end index_hash["recipe"] = run_list.recipe_names if run_list.recipe_names.length > 0 index_hash["role"] = run_list.role_names if run_list.role_names.length > 0 - index_hash["run_list"] = run_list.run_list if run_list.run_list.length > 0 + index_hash["run_list"] = run_list.run_list_items index_hash end @@ -409,7 +409,7 @@ class Chef display["normal"] = normal_attrs display["default"] = attributes.combined_default display["override"] = attributes.combined_override - display["run_list"] = run_list.run_list + display["run_list"] = run_list.run_list_items display end |