Conversation
|
Tagging subscribers to this area: @dotnet/ncl Issue DetailsReplace While I was changing the code, I added the asserts for Fixes #46075
|
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
|
/azp run runtime-libraries-coreclr outerloop |
|
Azure Pipelines successfully started running 1 pipeline(s). |
ManickaP
left a comment
There was a problem hiding this comment.
LGTM, thanks. Hope it helps 😄
|
|
||
| private static async Task WaitForEventCountersAsync(ConcurrentQueue<(EventWrittenEventArgs Event, Guid ActivityId)> events) | ||
| { | ||
| DateTime startTime = DateTime.UtcNow; |
There was a problem hiding this comment.
| DateTime startTime = DateTime.UtcNow; | |
| long startTime = Environment.TickCount64; |
It might not matter here since the timeout is 30s, but every time I see DateTime used like this, I'm a bit wary.
|
I misread the stack trace - there was only 1 failure on osx related to ordering. |
Replace
Task.Delay(hopefullyEnoughTime)with actually waiting for event counters (following what we did in Sockets telemetry tests).While I was changing the code, I added the asserts for
ActivityIds.Fixes #46075
Fixes #46073
Fixes #41723