From d883641d68da5f24510c01c4cafed617c8774e50 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sun, 19 Jan 2020 02:44:11 -0500 Subject: [PATCH] Implement new suspend/resume functionality for DeadSessionController --- .../Components/Watchdog/DeadSessionController.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Tgstation.Server.Host/Components/Watchdog/DeadSessionController.cs b/src/Tgstation.Server.Host/Components/Watchdog/DeadSessionController.cs index f6105886c8..035708a67c 100644 --- a/src/Tgstation.Server.Host/Components/Watchdog/DeadSessionController.cs +++ b/src/Tgstation.Server.Host/Components/Watchdog/DeadSessionController.cs @@ -100,5 +100,11 @@ namespace Tgstation.Server.Host.Components.Watchdog /// public void ReplaceDmbProvider(IDmbProvider newProvider) => throw new NotSupportedException(); + + /// + public void Suspend() => throw new NotSupportedException(); + + /// + public void Resume() => throw new NotSupportedException(); } }