Skip to content
Merged
Changes from all commits
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
4 changes: 3 additions & 1 deletion src/StackExchange.Redis/PhysicalBridge.cs
Original file line number Diff line number Diff line change
Expand Up @@ -765,10 +765,11 @@ private void StartBacklogProcessor()
{
if (Interlocked.CompareExchange(ref _backlogProcessorIsRunning, 1, 0) == 0)
{

#if DEBUG
_backlogProcessorRequestedTime = Environment.TickCount;
#endif
_backlogStatus = BacklogStatus.Activating;
Task.Run(ProcessBacklogAsync);
}
}
Expand Down Expand Up @@ -811,6 +812,7 @@ private void CheckBacklogForTimeouts() // check the head of the backlog queue, c
internal enum BacklogStatus : byte
{
Inactive,
Activating,
Starting,
Started,
CheckingForWork,
Expand Down