Skip to content

Commit c4bae81

Browse files
authored
Fix Set size in HttpLoggingOptions (#50426)
1 parent f8a8c52 commit c4bae81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Middleware/HttpLogging/src/HttpLoggingOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public sealed class HttpLoggingOptions
6868
/// </summary>
6969
public ISet<string> ResponseHeaders => _internalResponseHeaders;
7070

71-
internal HashSet<string> _internalResponseHeaders = new HashSet<string>(20, StringComparer.OrdinalIgnoreCase)
71+
internal HashSet<string> _internalResponseHeaders = new HashSet<string>(19, StringComparer.OrdinalIgnoreCase)
7272
{
7373
HeaderNames.AcceptRanges,
7474
HeaderNames.Age,

0 commit comments

Comments
 (0)