Skip to content

Commit

Permalink
Merged PR 32185: React to SDK changes
Browse files Browse the repository at this point in the history
The new Arcade brings in a new SDK that requires updates to the code.
  • Loading branch information
Tratcher committed Jun 22, 2023
1 parent 86dec47 commit af99cd3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions NuGet.config
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<!-- Feed for benchmark infrastructure to restore Microsoft.NETCore.App.Runtime for self-contained builds -->
<add key="dotnet6" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6/nuget/v3/index.json" />
<add key="dotnet7" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet7/nuget/v3/index.json" />
<add key="dotnet8" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet8/nuget/v3/index.json" />
</packageSources>
<disabledPackageSources>
<clear />
Expand Down
1 change: 1 addition & 0 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@
-->
<PreReleaseVersionLabel>rtw</PreReleaseVersionLabel>
<DotNetFinalVersionKind Condition="'$(PreReleaseVersionLabel)' == 'rtw'">release</DotNetFinalVersionKind>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion test/ReverseProxy.Tests/Forwarder/HttpForwarderTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ public async Task RequestWithBodies_WrongContentLength(string version, long cont
catch (HttpRequestException ex)
{
Assert.Contains("Content-Length", ex.InnerException.InnerException.Message);
throw ex;
throw;
}

return new HttpResponseMessage(HttpStatusCode.OK) { Content = new ByteArrayContent(Array.Empty<byte>()) };
Expand Down

0 comments on commit af99cd3

Please sign in to comment.