yhhazr opened a new issue, #4334:
URL: https://github.com/apache/rocketmq/issues/4334
@Override
public void updateCorePoolSize(int corePoolSize) {
if (corePoolSize > 0
&& corePoolSize <= Short.MAX_VALUE
&& corePoolSize <
this.defaultMQPushConsumer.getConsumeThreadMax()) {
this.consumeExecutor.setCorePoolSize(corePoolSize);
}
}
corePoolSize < this.defaultMQPushConsumer.getConsumeThreadMax() Should this
be corePoolSize <= this.defaultMQPushConsumer.getConsumeThreadMax(),it can not
update to max thread number
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]