Fix the bug of getting the number of threads

pull/247/head
chen.ma 2 years ago
parent 0273de198e
commit 3966187088

@ -118,6 +118,6 @@ public class ThreadPoolParameterInfo implements ThreadPoolParameter, Serializabl
}
public Integer getMaximumPoolSize() {
return this.maximumPoolSize == null ? this.maxSize : this.corePoolSize;
return this.maximumPoolSize == null ? this.maxSize : this.maximumPoolSize;
}
}

Loading…
Cancel
Save