You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by dp...@apache.org on 2018/08/22 21:10:13 UTC

[ignite-teamcity-bot] branch master updated: Save 100 latest runs instead of 50

This is an automated email from the ASF dual-hosted git repository.

dpavlov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite-teamcity-bot.git


The following commit(s) were added to refs/heads/master by this push:
     new 2de1702  Save 100 latest runs instead of 50
2de1702 is described below

commit 2de1702040af93afdcfe640ec5edc0d59de961d1
Author: Dmitriy Pavlov <dp...@apache.org>
AuthorDate: Thu Aug 23 00:10:10 2018 +0300

    Save 100 latest runs instead of 50
---
 .../src/main/java/org/apache/ignite/ci/analysis/RunStat.java            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/analysis/RunStat.java b/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/analysis/RunStat.java
index 0ce410f..039d46c 100644
--- a/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/analysis/RunStat.java
+++ b/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/analysis/RunStat.java
@@ -34,7 +34,7 @@ import org.jetbrains.annotations.NotNull;
  */
 @Persisted
 public class RunStat {
-    public static final int MAX_LATEST_RUNS = 50;
+    public static final int MAX_LATEST_RUNS = 100;
     public static final int RES_OK = 0;
 
     /**