Width Override Fixes + Swagger (again) (#3034)

This commit is contained in:
Joe Milazzo 2024-07-01 15:02:17 -05:00 committed by GitHub
parent 2326c9f437
commit 8cc1edc38d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 118 additions and 2161 deletions

View file

@ -489,8 +489,6 @@ public class ScannerService : IScannerService
// We don't need to send SignalR event as this is a background job that user doesn't need insight into
_logger.LogInformation("[ScannerService] Scan library invoked via nightly scan job but a task is already running for {LibraryName}. Rescheduling for 4 hours", lib.Name);
await Task.Delay(TimeSpan.FromHours(4));
//BackgroundJob.Schedule(() => ScanLibraries(forceUpdate), TimeSpan.FromHours(4));
//return;
}
await ScanLibrary(lib.Id, forceUpdate, true);