cherenkov-plenoscope / cable_robo_mount

a novel mount for the Cherenkov-plenoscope
MIT License
0 stars 0 forks source link

Make the mctracer ssh bridge blocking when executing remote commands #19

Closed relleums closed 7 years ago

relleums commented 7 years ago

The SSH bridge call is not blocking at the moment. We want this call to be blocking, i.e. to wait until the execution of the remote command is done. The paramiko package has a Channel object that might be suited for this job.

Further, it would be nice if the call could store the stdout and stderr of the remote command for logging.

relleums commented 7 years ago

solved