diff options
author | John Keiser <john@johnkeiser.com> | 2015-06-08 11:05:12 -0700 |
---|---|---|
committer | John Keiser <john@johnkeiser.com> | 2015-06-08 11:05:12 -0700 |
commit | d795db97bb8a79b179cd2f61355f04a856df3bd8 (patch) | |
tree | 58690703f387ce0d3d9c71f3e41f4c47f04e648c /lib/chef/dsl | |
parent | 4936ddb3b2391a6cab7adf9f3883ab97a3c57272 (diff) | |
download | chef-d795db97bb8a79b179cd2f61355f04a856df3bd8.tar.gz |
Make resource_for_short_name look up the canonical resourcejk/automatic-automatic-name
Diffstat (limited to 'lib/chef/dsl')
-rw-r--r-- | lib/chef/dsl/recipe.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/dsl/recipe.rb b/lib/chef/dsl/recipe.rb index ff398bc9e6..d69f0a8f11 100644 --- a/lib/chef/dsl/recipe.rb +++ b/lib/chef/dsl/recipe.rb @@ -162,7 +162,7 @@ class Chef # Chef::Resource::Blah = <resource>, a deprecation warning will be # emitted and the DSL method 'blah' will be added to the DSL. # - resource_class = Chef::ResourceResolver.new(run_context ? run_context.node : nil, method_symbol).resolve + resource_class = Chef::ResourceResolver.resolve(method_symbol, node: run_context ? run_context.node : nil) if resource_class Chef::DSL::Resources.add_resource_dsl(method_symbol) return send(method_symbol, *args, &block) |