diff options
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" |