diff --git a/src/Tgstation.Server.Host/Components/Deployment/ICompileJobSink.cs b/src/Tgstation.Server.Host/Components/Deployment/ICompileJobSink.cs
index 90a0f1596c..cf18fc0412 100644
--- a/src/Tgstation.Server.Host/Components/Deployment/ICompileJobSink.cs
+++ b/src/Tgstation.Server.Host/Components/Deployment/ICompileJobSink.cs
@@ -4,8 +4,6 @@ using System.Threading.Tasks;
using Tgstation.Server.Host.Models;
-#nullable disable
-
namespace Tgstation.Server.Host.Components.Deployment
{
///
@@ -17,9 +15,9 @@ namespace Tgstation.Server.Host.Components.Deployment
/// Load a new into the .
///
/// The to load.
- /// An to be called when the becomes active or is discarded with or respectively.
+ /// An optional to be called when the becomes active or is discarded with or respectively.
/// The for the operation.
/// A representing the running operation.
- ValueTask LoadCompileJob(CompileJob job, Action activationAction, CancellationToken cancellationToken);
+ ValueTask LoadCompileJob(CompileJob job, Action? activationAction, CancellationToken cancellationToken);
}
}