Method: ChefDK::ServiceExceptionInspectors::HTTP#response_headers
- Defined in:
- lib/chef-dk/service_exception_inspectors/http.rb
#response_headers ⇒ Object
85 86 87 88 89 90 91 |
# File 'lib/chef-dk/service_exception_inspectors/http.rb', line 85 def response_headers headers_s = "" response.each_header do |key, value| headers_s << key << ": " << value << "\n" end headers_s end |