From 4faa55aef7249cfcf369cdf7b49dc5e58ca93cde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ben=20Carpenter=20=F0=9F=9B=AB?= Date: Sun, 25 Feb 2024 18:40:33 -0800 Subject: [PATCH] update AuthorizationHandler --- .../Utility/AuthorizationHandler.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Microsoft.Devices.HardwareDevCenterManager/Utility/AuthorizationHandler.cs b/src/Microsoft.Devices.HardwareDevCenterManager/Utility/AuthorizationHandler.cs index 16c4c13..b9c9e9c 100644 --- a/src/Microsoft.Devices.HardwareDevCenterManager/Utility/AuthorizationHandler.cs +++ b/src/Microsoft.Devices.HardwareDevCenterManager/Utility/AuthorizationHandler.cs @@ -36,6 +36,7 @@ internal class AuthorizationHandler : DelegatingHandler /// The set of credentials to use for the token acquisition /// Integer value specifying HTTP timeout when making requests to HDC public AuthorizationHandler(AuthorizationHandlerCredentials credentials, uint httpTimeoutSeconds) + : base(new HttpClientHandler()) { _accessToken = null; _authCredentials = credentials;