We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I found a bug, not just asking a question, which should be created in GitHub Discussions.
I have searched the GitHub Issues and GitHub Discussions of this repository and believe that this is not a duplicate.
I have confirmed that this bug belongs to the current repository, not other repositories of RocketMQ.
Linux
4.9.x
No response
isEnableBatchPush can not be changed since the setter name is wrong
isEnableBatchPush=true
enableDLegerCommitLog=true
using test to reproducer
@Test public void testBrokerControllerConfigInit() throws Exception { Properties properties = new Properties(); properties.setProperty("isEnableBatchPush", "true"); MessageStoreConfig messageStoreConfig = new MessageStoreConfig(); MixAll.properties2Object(properties, messageStoreConfig); assertThat(messageStoreConfig.isEnableBatchPush()).isTrue(); }
isEnableBatchPush should be changed after set isEnableBatchPush=true in the broker.properties config
isEnableBatchPush did not change in the MessageStoreConfig
The text was updated successfully, but these errors were encountered:
Actually, set enableBatchPush as true can work.
enableBatchPush
Sorry, something went wrong.
[ISSUE #6800] Change the config variable isEnableBatchPush to enableB…
91d8ee1
…atchPush (#6801) * fix: wrong setter for config isEnableBatchPush Change-Id: I1ebf4748c26c42efb058c11a8b5084b69213892c * fix: change isEnableBatchPush to enableBatchPush Change-Id: I13db49a30841fe5ff9a548f02afa0cc272ba027d
Successfully merging a pull request may close this issue.
Before Creating the Bug Report
I found a bug, not just asking a question, which should be created in GitHub Discussions.
I have searched the GitHub Issues and GitHub Discussions of this repository and believe that this is not a duplicate.
I have confirmed that this bug belongs to the current repository, not other repositories of RocketMQ.
Runtime platform environment
Linux
RocketMQ version
4.9.x
JDK Version
No response
Describe the Bug
isEnableBatchPush can not be changed since the setter name is wrong
Steps to Reproduce
isEnableBatchPush=true
in the broker.properties configenableDLegerCommitLog=true
using test to reproducer
What Did You Expect to See?
isEnableBatchPush should be changed after set
isEnableBatchPush=true
in the broker.properties configWhat Did You See Instead?
isEnableBatchPush did not change in the MessageStoreConfig
Additional Context
No response
The text was updated successfully, but these errors were encountered: