From d70dd48a9470d7315b3cca3ff9aa4c3e981a20d8 Mon Sep 17 00:00:00 2001 From: Scott Beddall <45376673+scbedd@users.noreply.github.com> Date: Wed, 1 Feb 2023 10:57:52 -0800 Subject: [PATCH] Update tools/test-proxy/Azure.Sdk.Tools.TestProxy/RecordingHandler.cs Co-authored-by: JoshLove-msft <54595583+JoshLove-msft@users.noreply.github.com> --- tools/test-proxy/Azure.Sdk.Tools.TestProxy/RecordingHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test-proxy/Azure.Sdk.Tools.TestProxy/RecordingHandler.cs b/tools/test-proxy/Azure.Sdk.Tools.TestProxy/RecordingHandler.cs index 2fca151d598..adc259ccdcc 100644 --- a/tools/test-proxy/Azure.Sdk.Tools.TestProxy/RecordingHandler.cs +++ b/tools/test-proxy/Azure.Sdk.Tools.TestProxy/RecordingHandler.cs @@ -194,7 +194,7 @@ public async Task HandleRecordRequestAsync(string recordingId, HttpRequest incom throw new HttpException(HttpStatusCode.BadRequest, $"There is no active recording session under id {recordingId}."); } - var entryTuple = await CreateEntryAsync(incomingRequest).ConfigureAwait(false); + (RecordEntry entry, byte[] bytes) = await CreateEntryAsync(incomingRequest).ConfigureAwait(false); var entry = entryTuple.Item1; var upstreamRequest = CreateUpstreamRequest(incomingRequest, entryTuple.Item2);