Github user michaelandrepearce commented on a diff in the pull request:

    https://github.com/apache/activemq-artemis/pull/1443#discussion_r131766104
  
    --- Diff: 
artemis-server/src/main/java/org/apache/activemq/artemis/core/config/impl/ConfigurationImpl.java
 ---
    @@ -2064,6 +2072,53 @@ public Configuration 
setNetworkCheckPing6Command(String command) {
           return this;
        }
     
    +   @Override
    +   public boolean isCriticalAnalyzer() {
    +      return criticalAnalyzer;
    +   }
    +
    +   @Override
    +   public Configuration setCriticalAnalyzer(boolean CriticalAnalyzer) {
    +      this.criticalAnalyzer = CriticalAnalyzer;
    +      return this;
    +   }
    +
    +   @Override
    +   public long getCriticalAnalyzerTimeout() {
    +      return criticalAnalyzerTimeout;
    +   }
    +
    +   @Override
    +   public Configuration setCriticalAnalyzerTimeout(long timeout) {
    +      this.criticalAnalyzerTimeout = timeout;
    +      return this;
    +   }
    +
    +   @Override
    +   public long getCriticalAnalyzerCheckPeriod() {
    +      if (criticalAnalyzerCheckPeriod <= 0) {
    --- End diff --
    
    ditto i assume 0 should be constant DEFAULT_ANALYZE_CHECK_PERIOD


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to