From dev-return-40071-archive-asf-public=cust-asf.ponee.io@ignite.apache.org Wed Oct 3 15:40:58 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 8E84B180789 for ; Wed, 3 Oct 2018 15:40:56 +0200 (CEST) Received: (qmail 25627 invoked by uid 500); 3 Oct 2018 13:40:51 -0000 Mailing-List: contact dev-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list dev@ignite.apache.org Received: (qmail 25486 invoked by uid 99); 3 Oct 2018 13:40:51 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Oct 2018 13:40:51 +0000 From: GitBox To: dev@ignite.apache.org Subject: [GitHub] SomeFire commented on a change in pull request #25: IGNITE-9645 [TC Bot] Add comparison of failed tests lists in two date intervals Message-ID: <153857405056.24671.513455408630662564.gitbox@gitbox.apache.org> Date: Wed, 03 Oct 2018 13:40:50 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit SomeFire commented on a change in pull request #25: IGNITE-9645 [TC Bot] Add comparison of failed tests lists in two date intervals URL: https://github.com/apache/ignite-teamcity-bot/pull/25#discussion_r222271593 ########## File path: ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/IgniteTeamcityConnection.java ########## @@ -542,6 +545,19 @@ public ProblemOccurrences getProblems(Build build) { return supplyAsync(() -> getJaxbUsingHref(href, TestOccurrenceFull.class), executor); } + @AutoProfiling + @Override public TestOccurrences getFailedUnmutedTests(String href, int count, String normalizedBranch) { + return getTests(href + ",muted:false,status:FAILURE,count:" + count, normalizedBranch); + } + + @Override Review comment: `Override` annotation should be on the same line with method signature. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: users@infra.apache.org With regards, Apache Git Services