diff --git a/CHANGELIST.md b/CHANGELIST.md index b7d2eb4d..db5de725 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -46,6 +46,7 @@ - Fix required Int32 array input - Ensure dumping commands are tested - Add tests around default values +- Increase sleep time in queue ### 3.2.4 (2024-11-24) diff --git a/MPF.Frontend/ProcessingQueue.cs b/MPF.Frontend/ProcessingQueue.cs index 037aeb5a..2f7d7c47 100644 --- a/MPF.Frontend/ProcessingQueue.cs +++ b/MPF.Frontend/ProcessingQueue.cs @@ -73,7 +73,7 @@ namespace MPF.Frontend if (_tokenSource.IsCancellationRequested) break; - Thread.Sleep(1); + Thread.Sleep(25); continue; }