Get write connection for vacuum

This commit is contained in:
Bond_009 2023-04-14 22:43:14 +02:00
parent 33f97045f9
commit 8dba3a44fd
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ namespace Emby.Server.Implementations.Data
ReadConnections = new ConnectionPool(ReadConnectionsCount, CreateReadConnection);
// Configuration and pragmas can affect VACUUM so it needs to be last.
using (var connection = GetConnection(true))
using (var connection = GetConnection())
{
connection.Execute("VACUUM");
}