Skip to content

Commit

Permalink
Update tools/test-proxy/Azure.Sdk.Tools.TestProxy/RecordingHandler.cs
Browse files Browse the repository at this point in the history
Co-authored-by: JoshLove-msft <[email protected]>
  • Loading branch information
scbedd and JoshLove-msft authored Feb 1, 2023
1 parent 611830d commit d70dd48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit d70dd48

Please sign in to comment.