-
Notifications
You must be signed in to change notification settings - Fork 722
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
travis_wait should extend wait time if input is received #8575
Comments
Otherwise Travis kills job after default 20 minutes anyways travis-ci/travis-ci#8575
Otherwise Travis kills job after default 20 minutes anyways travis-ci/travis-ci#8575
|
@BanzaiMan what is the intended purpose then? And source.. From the docs it is made to extend the program timeout if no output is being received. So it doesn't fulfill its purpose - it kills program even if output is received. |
The purpose is to extend the time limit.
The clock starts when the command starts, and it is not reset. |
@BanzaiMan is it used anywhere else, except for the above scenario of "extend the program timeout if no output is being received"? Because it does a poor job in this user story. |
1. travis_wait doesn't show output while processing 2. it doesn't show it at all when timeout occure `travis_wait` choice is to not disrupt logs, but we are not parsing them. so that's ok References: travis-ci/travis-ci#8575 travis-ci/travis-ci#5716 travis-ci/travis-ci#3358
Without
travis_wait
a build was failing withNo output has been received in the last 10m0s
in 40 minutes because the last binary assembly step is indeed long, but withtravis_wait
that build fails after 20 minutes withTimeout (20 minutes) reached.
. Looks liketravis_wait
doesn't reset its timer if the input is received.The text was updated successfully, but these errors were encountered: