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:
[hidden email]
With regards,
Apache Git Services