diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-18 11:22:43 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-18 11:22:43 -0400 |
| commit | e86a8d4ef5194f1806272ad911aafe5e374ed31d (patch) | |
| tree | 82ea9b0f3e9d83675c42e119cc46bf9ca2719421 | |
| parent | 50088ba1f855c815b0d5ed8ffaa4010a4c4212bd (diff) | |
reduce number of parallel people tasks
| -rw-r--r-- | MediaBrowser.Server.Implementations/Library/LibraryManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/LibraryManager.cs b/MediaBrowser.Server.Implementations/Library/LibraryManager.cs index d3ac96f25..c4fba747b 100644 --- a/MediaBrowser.Server.Implementations/Library/LibraryManager.cs +++ b/MediaBrowser.Server.Implementations/Library/LibraryManager.cs @@ -690,7 +690,7 @@ namespace MediaBrowser.Server.Implementations.Library /// <returns>Task.</returns> public async Task ValidatePeople(CancellationToken cancellationToken, IProgress<double> progress) { - const int maxTasks = 250; + const int maxTasks = 50; var tasks = new List<Task>(); |
