From 9cd4327af212b39c2458808a017c960e179067f1 Mon Sep 17 00:00:00 2001 From: extra2 Date: Fri, 2 Jan 2026 11:02:03 +0100 Subject: [PATCH] Add missing cancellation tokens to async stream operations MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed missing CancellationToken parameters in GraphQLHttpClient.cs: - Pass cancellationToken to ReadAsStreamAsync() on line 180 - Pass cancellationToken to ReadToEndAsync() on line 193 This ensures proper cancellation support throughout the HTTP request pipeline, allowing operations to be cancelled promptly when requested. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- src/GraphQL.Client/GraphQLHttpClient.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/GraphQL.Client/GraphQLHttpClient.cs b/src/GraphQL.Client/GraphQLHttpClient.cs index 5f54d21b..da3b3e28 100644 --- a/src/GraphQL.Client/GraphQLHttpClient.cs +++ b/src/GraphQL.Client/GraphQLHttpClient.cs @@ -177,7 +177,7 @@ private async Task> SendHttpRequestAsync> SendHttpRequestAsync