feat: increase maximum concurrency for parallel agents to enhance performance
This commit is contained in:
@@ -320,9 +320,9 @@ pub fn run_workflow_tracked(
|
||||
}
|
||||
|
||||
let concurrency_cap = if script.options.max_concurrency > 0 {
|
||||
script.options.max_concurrency.min(8) // allow up to 8 parallel agents
|
||||
script.options.max_concurrency.min(10) // allow up to 10 parallel agents
|
||||
} else {
|
||||
4
|
||||
10
|
||||
};
|
||||
|
||||
let live_ref = live.as_ref();
|
||||
|
||||
Reference in New Issue
Block a user