Update src/Umbraco.Infrastructure/Runtime/SqlMainDomLock.cs

Co-authored-by: Andy Butland <abutland73@gmail.com>
This commit is contained in:
Bjarke Berg
2021-09-21 12:39:45 +02:00
committed by GitHub
parent b9ec06555f
commit 199c8b7681

View File

@@ -99,7 +99,7 @@ namespace Umbraco.Cms.Infrastructure.Runtime
_hasTable = db.HasTable(Cms.Core.Constants.DatabaseSchema.Tables.KeyValue);
if (!_hasTable)
{
_logger.LogDebug("The DB does not contain the required table, we must be in an install state we have no choice but to assume we can acquire");
_logger.LogDebug("The DB does not contain the required table so we must be in an install state. We have no choice but to assume we can acquire.");
_acquireWhenTablesNotAvailable = true;
return true;
}