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-21 14:32:18 -0800
commit39d760cbbe8ffe65dd5d3f25fc7a56f508e59f44 (patch)
treedfcc73f98d953bdd387dcd0228221884a9dc7fe6
parentcb6c4beeb124629d7d0b812b3c1dbe01efaff282 (diff)
downloadchef-39d760cbbe8ffe65dd5d3f25fc7a56f508e59f44.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 7624a928bb..dd6f645dfa 100644
--- a/lib/chef/node/attribute.rb
+++ b/lib/chef/node/attribute.rb
@@ -229,13 +229,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 25e61e1693..64bbc340ed 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
@@ -201,7 +200,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