We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d75b411 commit d054275Copy full SHA for d054275
src/Mvc/Mvc.Core/src/Filters/MiddlewareFilterBuilder.cs
@@ -14,7 +14,7 @@ namespace Microsoft.AspNetCore.Mvc.Filters
14
/// </summary>
15
internal class MiddlewareFilterBuilder
16
{
17
- // 'GetOrAdd' call on the dictionary is not thread safe and we might end up creating the pipeline more
+ // 'GetOrAdd' call on the dictionary is not thread safe and we might end up creating the pipeline more than
18
// once. To prevent this Lazy<> is used. In the worst case multiple Lazy<> objects are created for multiple
19
// threads but only one of the objects succeeds in creating a pipeline.
20
private readonly ConcurrentDictionary<Type, Lazy<RequestDelegate>> _pipelinesCache
0 commit comments