You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by ni...@apache.org on 2020/04/08 17:12:50 UTC

[incubator-heron] branch nicknezis/bazel-2 updated (45cd9c0 -> 2dc3ab9)

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

nicknezis pushed a change to branch nicknezis/bazel-2
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git.


    from 45cd9c0  Adding missing packages
     new f27864e  Added debian option to common.sh
     new 2dc3ab9  Testing with 50 attempts

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 integration_test/src/python/test_runner/main.py | 2 +-
 scripts/shutils/common.sh                       | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)


[incubator-heron] 01/02: Added debian option to common.sh

Posted by ni...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

nicknezis pushed a commit to branch nicknezis/bazel-2
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git

commit f27864ea57154931972cc938959ebda55c37fc6c
Author: Nicholas Nezis <ni...@gmail.com>
AuthorDate: Wed Apr 8 13:12:00 2020 -0400

    Added debian option to common.sh
---
 scripts/shutils/common.sh | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/scripts/shutils/common.sh b/scripts/shutils/common.sh
index 67502be..feec127 100755
--- a/scripts/shutils/common.sh
+++ b/scripts/shutils/common.sh
@@ -97,6 +97,8 @@ function discover_platform {
     echo "centos"
   elif [[ $discover =~ ^.*Ubuntu.*$ ]]; then
     echo "ubuntu"
+  elif [[ $discover =~ ^.*debian.*$ ]]; then
+    echo "debian"
   elif [[ $discover =~ ^Darwin.*$ ]]; then
     echo "darwin"
   else


[incubator-heron] 02/02: Testing with 50 attempts

Posted by ni...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

nicknezis pushed a commit to branch nicknezis/bazel-2
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git

commit 2dc3ab94c6b39070f767ae394e8bce5a9355e609
Author: Nicholas Nezis <ni...@gmail.com>
AuthorDate: Wed Apr 8 13:12:30 2020 -0400

    Testing with 50 attempts
---
 integration_test/src/python/test_runner/main.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/integration_test/src/python/test_runner/main.py b/integration_test/src/python/test_runner/main.py
index a09803a..b263aa3 100644
--- a/integration_test/src/python/test_runner/main.py
+++ b/integration_test/src/python/test_runner/main.py
@@ -33,7 +33,7 @@ from heron.common.src.python.utils import log
 # The location of default configure file
 DEFAULT_TEST_CONF_FILE = "integration_test/src/python/test_runner/resources/test.json"
 
-RETRY_ATTEMPTS = 25
+RETRY_ATTEMPTS = 50
 #seconds
 RETRY_INTERVAL = 10