diff --git a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Queues/GenericQueue.cs b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Queues/GenericQueue.cs index 5ca8a793..b4c6befa 100644 --- a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Queues/GenericQueue.cs +++ b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Queues/GenericQueue.cs @@ -28,7 +28,7 @@ namespace PepperDash_Essentials_Core.Queues /// /// public GenericQueue(string key) - : this(key, Thread.eThreadPriority.NotSet) + : this(key, Thread.eThreadPriority.MediumPriority) { } @@ -37,6 +37,7 @@ namespace PepperDash_Essentials_Core.Queues /// Constructor for generic queue with no pacing /// /// Key + /// public GenericQueue(string key, Thread.eThreadPriority priority) { _key = key;