summaryrefslogtreecommitdiff
path: root/lib/chef_zero/rest_base.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef_zero/rest_base.rb')
-rw-r--r--lib/chef_zero/rest_base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef_zero/rest_base.rb b/lib/chef_zero/rest_base.rb
index d85f489..3fa017a 100644
--- a/lib/chef_zero/rest_base.rb
+++ b/lib/chef_zero/rest_base.rb
@@ -178,7 +178,7 @@ module ChefZero
end
def json_response(response_code, json)
- already_json_response(response_code, JSON.pretty_generate(json))
+ already_json_response(response_code, FFI_Yajl::Encoder.encode(json, :pretty => true))
end
def already_json_response(response_code, json_text)