mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
Merge pull request #900 from PepperDash/hotfix/queue-thread-name
Add name to `GenericQueue` Thread - Release Branch
This commit is contained in:
commit
7075da5b68
1 changed files with 2 additions and 1 deletions
|
|
@ -139,7 +139,8 @@ namespace PepperDash.Essentials.Core.Queues
|
|||
_queue = new CrestronQueue<IQueueMessage>(cap);
|
||||
_worker = new Thread(ProcessQueue, null, Thread.eThreadStartOptions.Running)
|
||||
{
|
||||
Priority = priority
|
||||
Priority = priority,
|
||||
Name = _key
|
||||
};
|
||||
|
||||
SetDelayValues(pacing);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue