Commit ce977a0d authored by Denis Bilenko's avatar Denis Bilenko

examples/process.py: run 'uname' instead of 'finger'

parent 16c22578
......@@ -56,7 +56,7 @@ def popen_communicate(args, data=''):
if __name__ == '__main__':
# run 2 jobs in parallel
job1 = gevent.spawn(popen_communicate, 'finger')
job1 = gevent.spawn(popen_communicate, 'uname')
job2 = gevent.spawn(popen_communicate, 'netstat')
# wait for them to complete. stop waiting after 2 seconds
......
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