From ddf6ab0b09ad8242122970e5df1468384fe1024d Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 4 May 2020 12:16:38 -0400 Subject: [PATCH] Smarter to swap these two --- src/Tgstation.Server.Host/Components/Instance.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Components/Instance.cs b/src/Tgstation.Server.Host/Components/Instance.cs index 5ebff412e9..ccb6c0b1c3 100644 --- a/src/Tgstation.Server.Host/Components/Instance.cs +++ b/src/Tgstation.Server.Host/Components/Instance.cs @@ -593,8 +593,8 @@ namespace Tgstation.Server.Host.Components /// public async Task StopAsync(CancellationToken cancellationToken) { - await Watchdog.StopAsync(cancellationToken).ConfigureAwait(false); await SetAutoUpdateInterval(0).ConfigureAwait(false); + await Watchdog.StopAsync(cancellationToken).ConfigureAwait(false); await Task.WhenAll( Configuration.StopAsync(cancellationToken), ByondManager.StopAsync(cancellationToken),