diff --git a/src/Tgstation.Server.Host/Components/Deployment/DmbFactory.cs b/src/Tgstation.Server.Host/Components/Deployment/DmbFactory.cs
index 3e969409b4..d5dd1f13bd 100644
--- a/src/Tgstation.Server.Host/Components/Deployment/DmbFactory.cs
+++ b/src/Tgstation.Server.Host/Components/Deployment/DmbFactory.cs
@@ -76,7 +76,7 @@ namespace Tgstation.Server.Host.Components.Deployment
///
/// Map of s to locks on them.
///
- readonly IDictionary jobLockCounts;
+ readonly Dictionary jobLockCounts;
///
/// resulting in the latest yet to exist.
@@ -255,7 +255,7 @@ namespace Tgstation.Server.Host.Components.Deployment
if (!EngineVersion.TryParse(compileJob.EngineVersion, out var engineVersion))
{
- logger.LogWarning("Error loading compile job, bad engine version: {0}", compileJob.EngineVersion);
+ logger.LogWarning("Error loading compile job, bad engine version: {engineVersion}", compileJob.EngineVersion);
return null; // omae wa mou shinderu
}
@@ -353,7 +353,7 @@ namespace Tgstation.Server.Host.Components.Deployment
List jobUidsToNotErase = null;
// find the uids of locked directories
- if (jobIdsToSkip.Any())
+ if (jobIdsToSkip.Count > 0)
{
await databaseContextFactory.UseContext(async db =>
{