Use a newer .NET 8 signature

This commit is contained in:
Jordan Dominion
2023-11-23 18:40:56 -05:00
parent 7771e01356
commit 9daa97e123
@@ -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)