We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f338ed5 commit ee1bd6bCopy full SHA for ee1bd6b
1 file changed
src/GitHubVulnerabilities2Db/Job.cs
@@ -134,7 +134,8 @@ protected void ConfigureQueryServices(ContainerBuilder containerBuilder)
134
{
135
containerBuilder
136
.RegisterInstance(_client)
137
- .As<HttpClient>();
+ .As<HttpClient>()
138
+ .ExternallyOwned(); // We don't want autofac disposing this--see https://github.com/NuGet/NuGetGallery/issues/9194
139
140
141
.RegisterType<QueryService>()
0 commit comments