mirror of
https://github.com/apache/activemq-artemis.git
synced 2025-02-21 09:36:46 +00:00
NO-JIRA: Pre-release check, adding properties on ConfigurationImpl::equals
This commit is contained in:
parent
64f43b47b6
commit
1b1b0150c2
@ -1727,6 +1727,22 @@ public class ConfigurationImpl implements Configuration, Serializable {
|
||||
return false;
|
||||
if (connectionTtlCheckInterval != other.connectionTtlCheckInterval)
|
||||
return false;
|
||||
if (journalDatasync != other.journalDatasync) {
|
||||
return false;
|
||||
}
|
||||
if (globalMaxSize != other.globalMaxSize) {
|
||||
return false;
|
||||
}
|
||||
if (maxDiskUsage != other.maxDiskUsage) {
|
||||
return false;
|
||||
}
|
||||
if (diskScanPeriod != other.diskScanPeriod) {
|
||||
return false;
|
||||
}
|
||||
if (connectionTtlCheckInterval != other.connectionTtlCheckInterval) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user