Skip to content

Commit

Permalink
chore: ignore Task not awaited warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mvarendorff2 authored and Enterprize1 committed Dec 9, 2024
1 parent ddd88bd commit fbb6930
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Fluss.HotChocolate.IntegrationTest/HotChocolateTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ private async Task<Channel<List<Guid>>> SubscribeToTodos(CancellationToken ct)
socket.Options.AddSubProtocol("graphql-transport-ws");
await socket.ConnectAsync(new Uri(Address.Replace("http", "ws") + "/graphql"), CancellationToken.None);

Task.Run(async () =>
_ = Task.Run(async () =>
{
while (true)
{
Expand Down

0 comments on commit fbb6930

Please sign in to comment.