This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author fangyizhou
Recipients Mike Lewis, fangyizhou
Date 2018-02-13.18:35:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1518546912.72.0.467229070634.issue32795@psf.upfronthosting.co.za>
In-reply-to
Content
As far as I have discovered, the bash process is killed by after the timeout. Presumably the pipe is still open due to the sleep process, so in order to retrieve any output from stdout/stderr, the read waits on the pipe, hence leading to timeout not respected.

We can fix this issue in 2 ways 
(1) kill process tree when timeout happens
(2) force closing the pipes after timeout, but this will leave the sub-processes detached and it will be kept running

I don't know which way is better, hopefully someone with more knowledge can engage in the discussion.
History
Date User Action Args
2018-02-13 18:35:12fangyizhousetrecipients: + fangyizhou, Mike Lewis
2018-02-13 18:35:12fangyizhousetmessageid: <1518546912.72.0.467229070634.issue32795@psf.upfronthosting.co.za>
2018-02-13 18:35:12fangyizhoulinkissue32795 messages
2018-02-13 18:35:12fangyizhoucreate