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)