summaryrefslogtreecommitdiff
path: root/lib/chef/http/auth_credentials.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/http/auth_credentials.rb')
-rw-r--r--lib/chef/http/auth_credentials.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/chef/http/auth_credentials.rb b/lib/chef/http/auth_credentials.rb
index 765c9ee778..1702ae7e24 100644
--- a/lib/chef/http/auth_credentials.rb
+++ b/lib/chef/http/auth_credentials.rb
@@ -21,7 +21,11 @@
# limitations under the License.
#
require_relative "../log"
-require "mixlib/authentication/signedheaderauth"
+module Mixlib
+ module Authentication
+ autoload :SignedHeaderAuth, "mixlib/authentication/signedheaderauth"
+ end
+end
class Chef
class HTTP