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

shaofengshi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kylin.git


The following commit(s) were added to refs/heads/master by this push:
     new c549db5  KYLIN-3673 Increasing the limit of smoke-test building time
c549db5 is described below

commit c549db5749e1e01095a315ae805e753283bf802b
Author: Yichen Zhou <zhouy...@gmail.com>
AuthorDate: Thu Nov 8 16:03:48 2018 +0800

    KYLIN-3673 Increasing the limit of smoke-test building time
---
 build/smoke-test/testBuildCube.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build/smoke-test/testBuildCube.py 
b/build/smoke-test/testBuildCube.py
index 693d678..9452cf2 100644
--- a/build/smoke-test/testBuildCube.py
+++ b/build/smoke-test/testBuildCube.py
@@ -72,7 +72,7 @@ class testBuildCube(unittest.TestCase):
             job_info = json.loads(job_response.text)
             job_status = job_info['job_status']
             try_time = 1
-            while job_status in ('RUNNING', 'PENDING') and try_time <= 20:
+            while job_status in ('RUNNING', 'PENDING') and try_time <= 30:
                 print 'Wait for job complete, try_time = ' + str(try_time)
                 try:
                     job_response = requests.request("GET", job_url, 
headers=headers)

Reply via email to