Fixed composition.
This commit is contained in:
parent
57afa668e1
commit
30bcc662bc
|
@ -54,6 +54,7 @@ namespace NzbDrone.Common.Composition
|
||||||
var factory = CreateSingletonImplementationFactory(implementation);
|
var factory = CreateSingletonImplementationFactory(implementation);
|
||||||
|
|
||||||
_container.Register(service, factory);
|
_container.Register(service, factory);
|
||||||
|
_container.Register(service, factory, implementation.FullName);
|
||||||
}
|
}
|
||||||
|
|
||||||
public IEnumerable<T> ResolveAll<T>() where T : class
|
public IEnumerable<T> ResolveAll<T>() where T : class
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
using NLog;
|
using NLog;
|
||||||
using NzbDrone.Common.Cache;
|
using NzbDrone.Common.Cache;
|
||||||
|
@ -28,13 +29,13 @@ namespace NzbDrone.Common.Http
|
||||||
private readonly IRateLimitService _rateLimitService;
|
private readonly IRateLimitService _rateLimitService;
|
||||||
private readonly ICached<CookieContainer> _cookieContainerCache;
|
private readonly ICached<CookieContainer> _cookieContainerCache;
|
||||||
private readonly ICached<bool> _curlTLSFallbackCache;
|
private readonly ICached<bool> _curlTLSFallbackCache;
|
||||||
private readonly IEnumerable<IHttpRequestInterceptor> _requestInterceptors;
|
private readonly List<IHttpRequestInterceptor> _requestInterceptors;
|
||||||
|
|
||||||
public HttpClient(IEnumerable<IHttpRequestInterceptor> requestInterceptors, ICacheManager cacheManager, IRateLimitService rateLimitService, Logger logger)
|
public HttpClient(IEnumerable<IHttpRequestInterceptor> requestInterceptors, ICacheManager cacheManager, IRateLimitService rateLimitService, Logger logger)
|
||||||
{
|
{
|
||||||
_logger = logger;
|
_logger = logger;
|
||||||
_rateLimitService = rateLimitService;
|
_rateLimitService = rateLimitService;
|
||||||
_requestInterceptors = requestInterceptors;
|
_requestInterceptors = requestInterceptors.ToList();
|
||||||
ServicePointManager.DefaultConnectionLimit = 12;
|
ServicePointManager.DefaultConnectionLimit = 12;
|
||||||
|
|
||||||
_cookieContainerCache = cacheManager.GetCache<CookieContainer>(typeof(HttpClient));
|
_cookieContainerCache = cacheManager.GetCache<CookieContainer>(typeof(HttpClient));
|
||||||
|
|
Loading…
Reference in New Issue