From 9db41ee8ee29b78a71d2a9fc592d64c8fbf41dc2 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Fri, 23 Jun 2023 09:00:14 -0400 Subject: [PATCH] Use WATCHDOG=1 as initial sd_notify command --- src/Tgstation.Server.Host/System/SystemDManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/System/SystemDManager.cs b/src/Tgstation.Server.Host/System/SystemDManager.cs index 5dd66e259e..a026be25fb 100644 --- a/src/Tgstation.Server.Host/System/SystemDManager.cs +++ b/src/Tgstation.Server.Host/System/SystemDManager.cs @@ -104,7 +104,7 @@ namespace Tgstation.Server.Host.System /// public Task StartAsync(CancellationToken cancellationToken) { - if (SendSDNotify("RELOADING=1")) + if (SendSDNotify("WATCHDOG=1")) { logger.LogDebug("SystemD detected"); runTask = RunAsync(watchdogCts.Token);