diff options
author | Pete Higgins <pete@peterhiggins.org> | 2020-10-26 11:33:51 -0700 |
---|---|---|
committer | Pete Higgins <pete@peterhiggins.org> | 2020-10-26 11:33:51 -0700 |
commit | b58460543a03e5e317637315b647d7ed74f0380f (patch) | |
tree | f7c56c5a858047f87026d6225e9400e5c9bdea1a /lib/chef/http.rb | |
parent | 29765adb7174256880d574c36435a78ce8272d5d (diff) | |
download | chef-remove-net-http-monkeypatch.tar.gz |
Remove unused monkeypatch on net/http.remove-net-http-monkeypatch
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
Diffstat (limited to 'lib/chef/http.rb')
-rw-r--r-- | lib/chef/http.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/http.rb b/lib/chef/http.rb index 619cdbecec..af3aacc127 100644 --- a/lib/chef/http.rb +++ b/lib/chef/http.rb @@ -25,8 +25,8 @@ require "tempfile" unless defined?(Tempfile) autoload :OpenSSL, "openssl" autoload :URI, "uri" module Net - autoload :HTTP, File.expand_path("monkey_patches/net_http", __dir__) - autoload :HTTPClientException, File.expand_path("monkey_patches/net_http", __dir__) + autoload :HTTP, "net/http" + autoload :HTTPClientException, "net/http" end require_relative "http/basic_client" require_relative "config" |