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

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


The following commit(s) were added to refs/heads/master by this push:
     new 701377c  Increased timeout in `generate-endpoint-help.py`.
701377c is described below

commit 701377ca499bc733976713fc2b1dec8764cb4fd3
Author: Benjamin Bannier <[email protected]>
AuthorDate: Tue Mar 5 10:48:09 2019 +0100

    Increased timeout in `generate-endpoint-help.py`.
    
    In CI starting master or agent process often took longer than the
    allowed 10s which then lead to query timeouts and failed builds.
    
    This patch increases the allowed time from 10s to 10min which should
    allow the script to run to completion on even the most adverse machines.
    
    Review: https://reviews.apache.org/r/70105/
---
 support/generate-endpoint-help.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/generate-endpoint-help.py 
b/support/generate-endpoint-help.py
index 91c13d7..9ba2bce 100755
--- a/support/generate-endpoint-help.py
+++ b/support/generate-endpoint-help.py
@@ -77,7 +77,7 @@ MARKDOWN_TITLE = "Apache Mesos - HTTP Endpoints%s"
 
 # A global timeout as well as a retry interval when hitting any http
 # endpoints on the master or agent (in seconds).
-RECEIVE_TIMEOUT = 10
+RECEIVE_TIMEOUT = 600
 RETRY_INTERVAL = 0.10
 
 

Reply via email to