From 9f469eae3aaea549cc41fdd5a97837c3cbb789cf Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Mon, 27 Jan 2025 21:22:59 -0600 Subject: [PATCH] Lower the max concurrent tasks to 6 --- cpp/task_queue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/task_queue.h b/cpp/task_queue.h index afedd33..0b3f1e4 100644 --- a/cpp/task_queue.h +++ b/cpp/task_queue.h @@ -31,7 +31,7 @@ class TaskQueue { public: - TaskQueue(size_t max_concurrent_tasks = 10); + TaskQueue(size_t max_concurrent_tasks = 6); ~TaskQueue(); void enqueue(std::shared_ptr jobstatus, std::function log)> task_func, std::shared_ptr packageconf);