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.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/chef_zero/rest_base.rb b/lib/chef_zero/rest_base.rb
index 3fa017a..ec43f5e 100644
--- a/lib/chef_zero/rest_base.rb
+++ b/lib/chef_zero/rest_base.rb
@@ -116,10 +116,12 @@ module ChefZero
rest_path ||= request.rest_path
begin
data_store.set(rest_path, data, *options, :requestor => request.requestor)
- rescue DataStore::DataNotFoundError
+ rescue DataStore::DataNotFoundError => e
if options.include?(:data_store_exceptions)
raise
else
+ puts e
+ puts e.backtrace
raise RestErrorResponse.new(404, "Object not found: #{build_uri(request.base_uri, request.rest_path)}")
end
end