异步线程等待队列默认大小改为100

This commit is contained in:
bryan31
2021-04-08 10:46:57 +08:00
parent d4887c07a8
commit 9809a6ae98

View File

@@ -139,7 +139,7 @@ public class LiteflowConfig {
public Integer getWhenQueueLimit() {
if (ObjectUtil.isNull(whenQueueLimit)){
return 512;
return 100;
}else{
return whenQueueLimit;
}