Skip to content

Commit 227d7c9

Browse files
committed
Adjusted maxreports per incident to a more reasonable value
1 parent c3566c9 commit 227d7c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Server/Coderr.Server.Abstractions/Reports/ReportConfig.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ public class ReportConfig : IConfigurationSection//, IReportConfig
1313
/// </summary>
1414
/// <remarks>
1515
/// <para>
16-
/// Sets default of MaxReportJsonSize to 2000000, MaxReportsPerIncident to 500 and RetentionDays to 90.
16+
/// Sets default of MaxReportJsonSize to 2000000, MaxReportsPerIncident to 25 and RetentionDays to 90.
1717
/// </para>
1818
/// </remarks>
1919
public ReportConfig()
2020
{
2121
MaxReportJsonSize = 2000000;
22-
MaxReportsPerIncident = 500;
22+
MaxReportsPerIncident = 25;
2323
RetentionDays = 90;
2424
}
2525

0 commit comments

Comments
 (0)