-
Bug
-
Resolution: Fixed
-
Minor
-
None
-
Jenkins ver. 1.565
Jenkins.doQuietDown(boolean block, int timeout) blocks as long as there are jobs running. This is not what it says in the documentation and a less useful behavior in my point of view.
boolean block
usage="Block until the system really quiets down and no builds are running"
int timeout
usage="If non-zero, only block up to the specified number of milliseconds"
I suggest the implementation should do what it says in the doc, i.e. only wait timeout, then return even though jobs are still running.
This error should be easily exposed by a unit test...
- links to
At first glace the code looks fairly straightforward and correct
https://github.com/jenkinsci/jenkins/blob/stable/core/src/main/java/jenkins/model/Jenkins.java#L2881
So you're specifying e.g. block=true timeout=10000 for the CLI command, and it waits for much longer than 10 seconds?