renamed SqLite to Sqlite

This commit is contained in:
JPVenson
2025-03-24 10:07:52 +00:00
parent 3c2d3ac18b
commit ea8f1ffb7c
65 changed files with 7 additions and 6 deletions

View File

@@ -198,7 +198,7 @@ namespace Jellyfin.Server
_logger.LogInformation("Running query planner optimizations in the database... This might take a while");
var databaseProvider = appHost.ServiceProvider.GetRequiredService<IJellyfinDatabaseProvider>();
var shutdownSource = new CancellationTokenSource();
using var shutdownSource = new CancellationTokenSource();
shutdownSource.CancelAfter((int)TimeSpan.FromSeconds(60).TotalMicroseconds);
await databaseProvider.RunShutdownTask(shutdownSource.Token).ConfigureAwait(false);
}