Commit 8aa6b53c authored by Denis Bilenko's avatar Denis Bilenko

examples/processes.py: set timeout to 5

parent ce977a0d
......@@ -60,7 +60,7 @@ if __name__ == '__main__':
job2 = gevent.spawn(popen_communicate, 'netstat')
# wait for them to complete. stop waiting after 2 seconds
gevent.joinall([job1, job2], timeout=2)
gevent.joinall([job1, job2], timeout=5)
# print the results (if available)
if job1.ready():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment