Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
srprash authored Apr 14, 2024
2 parents 3a5cf99 + 0867b06 commit 36d8f88
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'net6.0'">
<PackageReference Include="System.Data.SqlClient" Version="4.4.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion sdk/test/UnitTests/HttpClientXRayTracingHandlerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class HttpClientXRayTracingHandlerTests : TestBase
{
private const string URL = "https://httpbin.org/";

private const string URL404 = "https://httpbin.org/404";
private const string URL404 = "https://httpbin.org/status/404";

private readonly HttpClient _httpClient;

Expand Down
2 changes: 1 addition & 1 deletion sdk/test/UnitTests/HttpWebRequestTracingExtensionTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class HttpWebRequestTracingExtensionTests : TestBase
{
private const string URL = "https://httpbin.org/";

private const string URL404 = "https://httpbin.org/404";
private const string URL404 = "https://httpbin.org/status/404";

private static AWSXRayRecorder _recorder;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class SanitizedHttpClientXRayTracingHandlerTests : TestBase
{
private const string URL = "https://httpbin.org/?ab=test&ad=test";

private const string URL404 = "https://httpbin.org/404";
private const string URL404 = "https://httpbin.org/status/404";

private readonly HttpClient _httpClient;

Expand Down

0 comments on commit 36d8f88

Please sign in to comment.