Skip to content
Closed
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
Next Next commit
[TAM-2029] wrong ttl alert notification fixed
  • Loading branch information
Siarhei Hanich committed Feb 12, 2026
commit b00b05978a777e29342b70c2d4dd93b703ac953a
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,10 @@ internal override DateTime To
internal virtual void AddValueBase(T value)
{
if (value.IsTimeout && (_lastTimeout is null || _lastTimeout.ReceivingTime < value.ReceivingTime))
{
_lastTimeout = value;
return;
}

_cache.Enqueue(value);

Expand Down