Merge remote-tracking branch 'upstream/master' into library_scan_speed

This commit is contained in:
Gary Wilber
2020-11-08 11:51:40 -08:00
400 changed files with 5814 additions and 8346 deletions

View File

@@ -271,6 +271,10 @@ namespace MediaBrowser.Model.Configuration
/// </summary>
public string[] KnownProxies { get; set; }
/// Gets or sets the number of days we should retain activity logs.
/// </summary>
public int? ActivityLogRetentionDays { get; set; }
/// <summary>
/// Gets or sets the how the library scan fans out.
/// </summary>
@@ -391,8 +395,9 @@ namespace MediaBrowser.Model.Configuration
SlowResponseThresholdMs = 500;
CorsHosts = new[] { "*" };
KnownProxies = Array.Empty<string>();
LibraryMetadataRefreshConcurrency = 0;
ActivityLogRetentionDays = 30;
LibraryScanFanoutConcurrency = 0;
LibraryMetadataRefreshConcurrency = 0;
}
}