From 9daa97e123f39147bfd48d7b0ab0dcc3a4878df8 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Thu, 23 Nov 2023 18:40:56 -0500 Subject: [PATCH] Use a newer .NET 8 signature --- src/Tgstation.Server.Host/Core/CommandPipeManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Core/CommandPipeManager.cs b/src/Tgstation.Server.Host/Core/CommandPipeManager.cs index cd06a7a073..d86e8ed69c 100644 --- a/src/Tgstation.Server.Host/Core/CommandPipeManager.cs +++ b/src/Tgstation.Server.Host/Core/CommandPipeManager.cs @@ -100,7 +100,7 @@ namespace Tgstation.Server.Host.Core while (!cancellationToken.IsCancellationRequested) { logger.LogTrace("Waiting to read command line..."); - var line = await streamReader.ReadLineAsync().WaitAsync(cancellationToken); + var line = await streamReader.ReadLineAsync(cancellationToken); logger?.LogInformation("Received pipe command: {command}", line); switch (line)