Skip to content

Commit

Permalink
Update Rebus to 8.1.0 and Datadog.Trace to 3.3.1 (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
Claker authored Oct 3, 2024
1 parent 1423965 commit 08539c0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
<PackageReference Include="Moq" Version="4.18.4" />
<PackageReference Include="Rebus" Version="7.0.0" />
<PackageReference Include="Rebus" Version="8.1.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ public async void ShouldPopulateTraceIdWhenItDoesNotExist_WhenCallingProcess()
Assert.Equal(1, _nbrOfCalls);
Assert.NotNull(headers[HttpHeaderNames.TraceId]);
Assert.NotNull(headers[HttpHeaderNames.ParentId]);
Assert.NotNull(headers[HttpHeaderNames.SamplingPriority]);
}

[Fact]
Expand All @@ -63,7 +62,6 @@ public async void ShouldNotOverrideTraceIdWhenItExists_WhenCallingProcess()
Assert.Equal(1, _nbrOfCalls);
Assert.NotNull(headers[HttpHeaderNames.TraceId]);
Assert.NotNull(headers[HttpHeaderNames.ParentId]);
Assert.NotNull(headers[HttpHeaderNames.SamplingPriority]);
Assert.Equal(traceId, headers[HttpHeaderNames.TraceId]);
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/Rebus.Datadog.Tracing/Rebus.Datadog.Tracing.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Datadog.Trace" Version="2.24.1" />
<PackageReference Include="Rebus" Version="7.0.0" />
<PackageReference Include="Datadog.Trace" Version="3.3.1" />
<PackageReference Include="Rebus" Version="8.1.0" />
</ItemGroup>

</Project>

0 comments on commit 08539c0

Please sign in to comment.