Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id D877B200CDD for ; Mon, 7 Aug 2017 23:43:21 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id D72B2166305; Mon, 7 Aug 2017 21:43:21 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 4F4CD1662FF for ; Mon, 7 Aug 2017 23:43:21 +0200 (CEST) Received: (qmail 98818 invoked by uid 500); 7 Aug 2017 21:43:20 -0000 Mailing-List: contact dev-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list dev@activemq.apache.org Received: (qmail 98796 invoked by uid 99); 7 Aug 2017 21:43:19 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Aug 2017 21:43:19 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 154A7F1755; Mon, 7 Aug 2017 21:43:19 +0000 (UTC) From: michaelandrepearce To: dev@activemq.apache.org Reply-To: dev@activemq.apache.org References: In-Reply-To: Subject: [GitHub] activemq-artemis pull request #1443: ARTEMIS-1324 Deadlock detection and hea... Content-Type: text/plain Message-Id: <20170807214319.154A7F1755@git1-us-west.apache.org> Date: Mon, 7 Aug 2017 21:43:19 +0000 (UTC) archived-at: Mon, 07 Aug 2017 21:43:22 -0000 Github user michaelandrepearce commented on a diff in the pull request: https://github.com/apache/activemq-artemis/pull/1443#discussion_r131771146 --- 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 -- agreed what is there is fine, these are only code nits --- 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 infrastructure@apache.org or file a JIRA ticket with INFRA. ---