Skip to content

Commit

Permalink
Oops. A little too liberal with the usings
Browse files Browse the repository at this point in the history
  • Loading branch information
tippmar-nr committed Dec 19, 2024
1 parent cad4f87 commit 9ea72b1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public override IHttpResponse Send(IHttpRequest request)
}

Log.Finest($"Request({request.RequestGuid}: Sending");
using var response = _httpClientWrapper.SendAsync(req).GetAwaiter().GetResult();
var response = _httpClientWrapper.SendAsync(req).GetAwaiter().GetResult();
Log.Finest($"Request({request.RequestGuid}: Sent");

var httpResponse = new HttpResponse(request.RequestGuid, response);
Expand Down

0 comments on commit 9ea72b1

Please sign in to comment.