diff options
author | Jesse Wolfe <jes5199@gmail.com> | 2011-01-03 17:27:14 -0800 |
---|---|---|
committer | Jesse Wolfe <jes5199@gmail.com> | 2011-01-03 17:27:14 -0800 |
commit | 7603b055d10810a901b6e0f9d9de89e00b842058 (patch) | |
tree | e51752d251fb5606cc6a56c553242eaac8b504ac | |
parent | a6402781a1e0403a113b51e784d929c29f440db1 (diff) | |
download | puppet-7603b055d10810a901b6e0f9d9de89e00b842058.tar.gz puppet-7603b055d10810a901b6e0f9d9de89e00b842058.tar.xz puppet-7603b055d10810a901b6e0f9d9de89e00b842058.zip |
maint: remove stray debug statement.
I accidentally committed a debug statement. Now I am removing it.
-rw-r--r-- | lib/puppet/reports/http.rb | 2 |
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 |