Skip to content

Commit 6b3e194

Browse files
authored
Updating WorkerService (#9152)
1 parent b13595e commit 6b3e194

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/WebJobs.Script/Workers/Http/DefaultHttpWorkerService.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ internal DefaultHttpWorkerService(HttpClient httpClient, IOptions<HttpWorkerOpti
5252
private static HttpClient CreateHttpClient(IOptions<HttpWorkerOptions> httpWorkerOptions)
5353
{
5454
HttpClientHandler handler = new();
55+
handler.UseCookies = false;
5556
handler.AllowAutoRedirect = !httpWorkerOptions.Value.EnableForwardingHttpRequest;
5657
return new(handler);
5758
}

0 commit comments

Comments
 (0)