summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/puppet/reports/http.rb2
1 files changed, 1 insertions, 1 deletions
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