diff options
author | danielsdeleo <dan@opscode.com> | 2013-02-11 15:45:15 -0800 |
---|---|---|
committer | danielsdeleo <dan@opscode.com> | 2013-02-11 15:45:15 -0800 |
commit | 07bc5331feac1ceaf0627aaf2c52b213f39be45a (patch) | |
tree | d358240b7a89999198aef32ffeeebe305da01eaf /lib/chef/data_bag.rb | |
parent | 3f12a8561bd10817db4fc2a4da26d071294a551e (diff) | |
download | chef-07bc5331feac1ceaf0627aaf2c52b213f39be45a.tar.gz |
switch from JSON.parse to JSONCompat
Diffstat (limited to 'lib/chef/data_bag.rb')
-rw-r--r-- | lib/chef/data_bag.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/data_bag.rb b/lib/chef/data_bag.rb index 9ce6215b20..be88d07e59 100644 --- a/lib/chef/data_bag.rb +++ b/lib/chef/data_bag.rb @@ -101,7 +101,7 @@ class Chef end Dir.glob(File.join(Chef::Config[:data_bag_path], "#{name}", "*.json")).inject({}) do |bag, f| - item = JSON.parse(IO.read(f)) + item = Chef::JSONCompat.from_json(IO.read(f)) bag[item['id']] = item bag end |