diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2016-01-12 09:18:16 -0800 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2016-01-12 09:18:16 -0800 |
commit | 812101f11a6c33e49f401ad72598ca6ffb38adc4 (patch) | |
tree | bab654bbd8d6310d46c0f1787691133a2b6bb743 /lib/chef/http | |
parent | c7194aea7c145b94c46a97dd3f218aff1b0116c2 (diff) | |
parent | c844e1c87374b18ee634a06a5325518631607c90 (diff) | |
download | chef-812101f11a6c33e49f401ad72598ca6ffb38adc4.tar.gz |
Merge pull request #4381 from chef/lcg/useless-to-s
chefstyle: fix Lint/StringConversionInInterpolation
Diffstat (limited to 'lib/chef/http')
-rw-r--r-- | lib/chef/http/http_request.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/http/http_request.rb b/lib/chef/http/http_request.rb index 1baf5724ae..24cd99375d 100644 --- a/lib/chef/http/http_request.rb +++ b/lib/chef/http/http_request.rb @@ -127,7 +127,7 @@ class Chef # http://redmine.ruby-lang.org/issues/show/2758 if e.to_s =~ /#{Regexp.escape(%q|undefined method `closed?' for nil:NilClass|)}/ Chef::Log.debug("Rescued error in http connect, re-raising as Errno::ECONNREFUSED to hide bug in net/http") - Chef::Log.debug("#{e.class.name}: #{e.to_s}") + Chef::Log.debug("#{e.class.name}: #{e}") Chef::Log.debug(e.backtrace.join("\n")) raise Errno::ECONNREFUSED, "Connection refused attempting to contact #{url.scheme}://#{host}:#{port}" else |