Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ref(logs): pass arguments explicitly to Wait method
  • Loading branch information
Flash0ver committed Aug 10, 2025
commit 089fffc5772007da7eb2d734d89a2b3c43e062cc
2 changes: 1 addition & 1 deletion src/Sentry/Threading/ScopedCountdownLock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ internal LockScope(ScopedCountdownLock lockObj)
internal void Wait()
{
var lockObj = _lockObj;
lockObj?._event.Wait();
lockObj?._event.Wait(Timeout.Infinite, CancellationToken.None);
Copy link
Member Author

@Flash0ver Flash0ver Aug 11, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note: this is not a behavioral change .. just making the behavior more apparent by "lifting" the method call of the parameterless Wait method

}

public void Dispose()
Expand Down