summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2018-02-08 18:09:19 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2018-02-08 18:10:07 -0800
commite468c26794fb62a103e1fba3ccaf98f311c79e4d (patch)
treeb38fe544ae2105fc145389216ac44a025df767ba
parent743f8379933d92354de631af3078f839960831d8 (diff)
downloadchef-e468c26794fb62a103e1fba3ccaf98f311c79e4d.tar.gz
remove debugging
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
-rw-r--r--lib/chef/node/attribute.rb3
-rw-r--r--lib/chef/node/attribute_collections.rb2
2 files changed, 0 insertions, 5 deletions
diff --git a/lib/chef/node/attribute.rb b/lib/chef/node/attribute.rb
index 5ee8fbb4de..238d3744d7 100644
--- a/lib/chef/node/attribute.rb
+++ b/lib/chef/node/attribute.rb
@@ -235,13 +235,10 @@ class Chef
end
def reset
- puts "TOTAL RESET"
- #puts caller
@deep_merge_cache = nil
end
def reset_cache(*path)
- #puts "PATH: #{path}"
if path.empty?
reset
else
diff --git a/lib/chef/node/attribute_collections.rb b/lib/chef/node/attribute_collections.rb
index 053c3e18c1..ca0d542dca 100644
--- a/lib/chef/node/attribute_collections.rb
+++ b/lib/chef/node/attribute_collections.rb
@@ -93,7 +93,6 @@ class Chef
private
def convert_value(value, path = nil)
- puts "CONVERT_VALUE: #{path}"
value.ensure_generated_cache! if value.respond_to?(:ensure_generated_cache!)
case value
when VividMash
@@ -219,7 +218,6 @@ class Chef
# AttrArray for consistency and to ensure that the added parts of the
# attribute tree will have the correct cache invalidation behavior.
def convert_value(value, path = nil)
- puts "CONVERT_VALUE: #{path}"
value.ensure_generated_cache! if value.respond_to?(:ensure_generated_cache!)
case value
when VividMash