From 7603b055d10810a901b6e0f9d9de89e00b842058 Mon Sep 17 00:00:00 2001 From: Jesse Wolfe Date: Mon, 3 Jan 2011 17:27:14 -0800 Subject: maint: remove stray debug statement. I accidentally committed a debug statement. Now I am removing it. --- lib/puppet/reports/http.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/puppet/reports/http.rb b/lib/puppet/reports/http.rb index 101c8e0cb..7ac54dfbd 100644 --- a/lib/puppet/reports/http.rb +++ b/lib/puppet/reports/http.rb @@ -15,7 +15,7 @@ Puppet::Reports.register_report(:http) do req = Net::HTTP::Post.new(url.path) req.body = self.to_yaml req.content_type = "application/x-yaml" - p Net::HTTP.new(url.host, url.port).start {|http| + Net::HTTP.new(url.host, url.port).start {|http| http.request(req) } end -- cgit