Strange problems with subprocess

  • Thread starter Michele Petrazzo
  • Start date
M

Michele Petrazzo

Hi all. I have a simple "ping tester" program that, every 1 minute
(execute by linux crontab), create, with subprocess, a
"ping -c 1 my_addrs". All work, but sometime (about 1/2 times at a day),
I receive this error message:

File "/exports/srv-wipex/net_test/ping_tester.py", line 88, in pyPing
cmd_p = Popen(cmd, stdout=PIPE, stderr=PIPE)
File "subprocess.py", line 543, in __init__
errread, errwrite)
File "subprocess.py", line 970, in _execute_child
data = os.read(errpipe_read, 1048576) # Exceptions limited to 1 MB

What can be that raise this?

Python 2.4 in deb etch

Thanks,
Michele
 
K

kyosohma

Hi all. I have a simple "ping tester" program that, every 1 minute
(execute by linux crontab), create, with subprocess, a
"ping -c 1 my_addrs". All work, but sometime (about 1/2 times at a day),
I receive this error message:

File "/exports/srv-wipex/net_test/ping_tester.py", line 88, in pyPing
cmd_p = Popen(cmd, stdout=PIPE, stderr=PIPE)
File "subprocess.py", line 543, in __init__
errread, errwrite)
File "subprocess.py", line 970, in _execute_child
data = os.read(errpipe_read, 1048576) # Exceptions limited to 1 MB

What can be that raise this?

Python 2.4 in deb etch

Thanks,
Michele

This doesn't look like a complete traceback. It doesn't give what the
error was.

Mike
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,431
Messages
2,571,677
Members
48,796
Latest member
Greg L.

Latest Threads

Top