Skip to content

Commit 9195980

Browse files
authored
4.16.4 Hotfix (#9154)
1 parent afd2544 commit 9195980

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

build/common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<LangVersion>latest</LangVersion>
66
<MajorVersion>4</MajorVersion>
77
<MinorVersion>16</MinorVersion>
8-
<PatchVersion>3</PatchVersion>
8+
<PatchVersion>4</PatchVersion>
99
<BuildNumber Condition="'$(BuildNumber)' == '' ">0</BuildNumber>
1010
<PreviewVersion></PreviewVersion>
1111

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)