File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/libraries/System.Net.Http.WinHttpHandler/src/System/Net/Http Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public class WinHttpHandler : HttpMessageHandler
4848
4949 private static readonly Lazy < bool > s_supportsTls13 = new Lazy < bool > ( CheckTls13Support ) ;
5050 private static readonly TimeSpan s_cleanCachedCertificateTimeout = TimeSpan . FromMilliseconds ( ( int ? ) AppDomain . CurrentDomain . GetData ( "System.Net.Http.WinHttpCertificateCachingCleanupTimerInterval" ) ?? 60_000 ) ;
51- private static readonly long s_staleTimeout = ( long ) ( s_cleanCachedCertificateTimeout . TotalSeconds * Stopwatch . Frequency / 1000 ) ;
51+ private static readonly long s_staleTimeout = ( long ) ( s_cleanCachedCertificateTimeout . TotalSeconds * Stopwatch . Frequency ) ;
5252
5353 [ ThreadStatic ]
5454 private static StringBuilder ? t_requestHeadersBuilder ;
You can’t perform that action at this time.
0 commit comments