summaryrefslogtreecommitdiff
path: root/lib/chef_zero/endpoints/rest_list_endpoint.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef_zero/endpoints/rest_list_endpoint.rb')
-rw-r--r--lib/chef_zero/endpoints/rest_list_endpoint.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef_zero/endpoints/rest_list_endpoint.rb b/lib/chef_zero/endpoints/rest_list_endpoint.rb
index 9a0ab7d..d6556cf 100644
--- a/lib/chef_zero/endpoints/rest_list_endpoint.rb
+++ b/lib/chef_zero/endpoints/rest_list_endpoint.rb
@@ -1,4 +1,4 @@
-require 'json'
+require 'ffi_yajl'
require 'chef_zero/rest_base'
module ChefZero
@@ -34,7 +34,7 @@ module ChefZero
end
def get_key(contents)
- json = JSON.parse(contents, :create_additions => false)
+ json = FFI_Yajl::Parser.parse(contents, :create_additions => false)
identity_keys.map { |k| json[k] }.select { |v| v }.first
end
end