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/11/10 17:33:58 UTC

[ignite-teamcity-bot] branch master updated: Hack to avoid double invalid suite selection

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 c078b8e  Hack to avoid double invalid suite selection
c078b8e is described below

commit c078b8e682438cc2057355df5824480472e09c2f
Author: Dmitriy Pavlov <dp...@apache.org>
AuthorDate: Sat Nov 10 20:33:55 2018 +0300

    Hack to avoid double invalid suite selection
---
 ignite-tc-helper-web/src/main/webapp/js/prs-1.0.js | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/ignite-tc-helper-web/src/main/webapp/js/prs-1.0.js b/ignite-tc-helper-web/src/main/webapp/js/prs-1.0.js
index 89d351e..b172279 100644
--- a/ignite-tc-helper-web/src/main/webapp/js/prs-1.0.js
+++ b/ignite-tc-helper-web/src/main/webapp/js/prs-1.0.js
@@ -22,6 +22,10 @@ function requestTableForServer(srvId, suiteId, element) {
     if (srvId != "apache")
         return;
 
+    // TODO multiple suites
+    if (suiteId != "IgniteTests24Java8_RunAll")
+        return;
+
     let tableId = "serverContributions-" + srvId;
 
     if ($("#" + tableId).length > 0)