You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2016/11/07 16:36:29 UTC

[09/50] [abbrv] activemq-artemis git commit: NO-JIRA: Pre-release check, adding properties on ConfigurationImpl::equals

NO-JIRA: Pre-release check, adding properties on ConfigurationImpl::equals


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/1b1b0150
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/1b1b0150
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/1b1b0150

Branch: refs/heads/ARTEMIS-780
Commit: 1b1b0150c281cd8228dda589eb1acd4852669b82
Parents: 64f43b4
Author: Clebert Suconic <cl...@apache.org>
Authored: Thu Nov 3 14:52:33 2016 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Thu Nov 3 14:52:33 2016 -0400

----------------------------------------------------------------------
 .../artemis/core/config/impl/ConfigurationImpl.java | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/1b1b0150/artemis-server/src/main/java/org/apache/activemq/artemis/core/config/impl/ConfigurationImpl.java
----------------------------------------------------------------------
diff --git a/artemis-server/src/main/java/org/apache/activemq/artemis/core/config/impl/ConfigurationImpl.java b/artemis-server/src/main/java/org/apache/activemq/artemis/core/config/impl/ConfigurationImpl.java
index 7e851a9..53a5e08 100644
--- a/artemis-server/src/main/java/org/apache/activemq/artemis/core/config/impl/ConfigurationImpl.java
+++ b/artemis-server/src/main/java/org/apache/activemq/artemis/core/config/impl/ConfigurationImpl.java
@@ -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;
    }