saga-project / bliss

ATTENTION: bliss is now saga-python. Please check out the new project website for the latest version: http://saga-project.github.com/saga-python/
http://saga-project.github.com/saga-python/
Other
8 stars 4 forks source link

SSH Job plug-in job.run() can hang #56

Closed andre-merzky closed 11 years ago

andre-merzky commented 12 years ago

Sorry, I can't reproduce it reliably, but job.run() seems in some occasions to simply hang (on a simple /bin/date to ssh://localhost). I don't expect that to be debug'able with that limited information, but wanted to note it down for later reference::

>>> jd.error  = '/tmp/err'
>>> jd.output  = '/tmp/err'
>>> j  = js.create_job(jd)
>>> j.run()
>>> print "job id: %s"  %  j.get_job_id()
job id: [ssh://localhost]-[27773]
>>> j.wait ()
>>> print j.get_state()
saga.job.Job.Done
>>> jd.output  = '/tmp/out'
>>> j  = js.create_job(jd)
>>> j.run()
KeyboardInterrupt
andre-merzky commented 11 years ago

Can't verify / reproduce anymore...