We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97cd799 commit 68c4e19Copy full SHA for 68c4e19
tracer/test/Datadog.Trace.Tests/TraceContextTests.cs
@@ -40,6 +40,7 @@ public void UtcNow_IsMonotonic()
40
var traceContext = new TraceContext(_tracerMock.Object);
41
42
var t1 = traceContext.Clock.UtcNow;
43
+ System.Threading.Thread.Sleep(1); // Getting some flaky errors in .NET 10 (same time is returned)
44
var t2 = traceContext.Clock.UtcNow;
45
var substractResult = t2.Subtract(t1);
46
0 commit comments