Skip to content

Commit b8627a1

Browse files
committed
4.17.2 hotfix
1 parent 8f58b52 commit b8627a1

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>17</MinorVersion>
8-
<PatchVersion>1</PatchVersion>
8+
<PatchVersion>2</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)