lib/benchmark_driver/output/rubybench.rb in benchmark_driver-output-rubybench-0.2.4 vs lib/benchmark_driver/output/rubybench.rb in benchmark_driver-output-rubybench-0.2.5
- old
+ new
@@ -66,8 +66,9 @@
'benchmark_run[environment]' => environment,
'repo' => ENV.fetch('REPO_NAME'),
'organization' => ENV.fetch('ORGANIZATION_NAME'),
}.merge(initiator_hash).merge(result_hash))
- puts http.request(request).body
+ response = http.request(request)
+ puts "status: #{response.code}, body: #{response.body.inspect}"
end
end