summaryrefslogtreecommitdiff
path: root/chef/lib/chef/application/solo.rb
diff options
context:
space:
mode:
Diffstat (limited to 'chef/lib/chef/application/solo.rb')
-rw-r--r--chef/lib/chef/application/solo.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/chef/lib/chef/application/solo.rb b/chef/lib/chef/application/solo.rb
index e1458195b8..35887d0d70 100644
--- a/chef/lib/chef/application/solo.rb
+++ b/chef/lib/chef/application/solo.rb
@@ -145,7 +145,7 @@ class Chef::Application::Solo < Chef::Application
end
begin
- @chef_solo_json = JSON.parse(json_io.read)
+ @chef_solo_json = Chef::JSON.from_json(json_io.read)
json_io.close unless json_io.closed?
rescue JSON::ParserError => error
Chef::Application.fatal!("Could not parse the provided JSON file (#{Chef::Config[:json_attribs]})!: " + error.message, 2)