mirror of
https://github.com/apache/activemq-artemis.git
synced 2025-02-21 09:36:46 +00:00
ARTEMIS-1628 Fixing typo on limit pool size check
This commit is contained in:
parent
5bc1f13297
commit
a82ffbcb78
@ -863,7 +863,7 @@ public class ConfigurationImpl implements Configuration, Serializable {
|
||||
@Override
|
||||
public Configuration setJournalPoolFiles(int poolSize) {
|
||||
this.journalPoolFiles = poolSize;
|
||||
if (!Env.isTestEnv()) {
|
||||
if (!Env.isTestEnv() && poolSize < 0) {
|
||||
ActiveMQServerLogger.LOGGER.useFixedValueOnJournalPoolFiles();
|
||||
}
|
||||
return this;
|
||||
|
Loading…
x
Reference in New Issue
Block a user