Show More
@@ -584,7 +584,7 b' class SSHLauncher(LocalProcessLauncher):' | |||||
584 |
|
584 | |||
585 | def find_args(self): |
|
585 | def find_args(self): | |
586 | return self.ssh_cmd + self.ssh_args + [self.location] + \ |
|
586 | return self.ssh_cmd + self.ssh_args + [self.location] + \ | |
587 | self.program + self.program_args |
|
587 | list(map(pipes.quote, self.program + self.program_args)) | |
588 |
|
588 | |||
589 | def _send_file(self, local, remote): |
|
589 | def _send_file(self, local, remote): | |
590 | """send a single file""" |
|
590 | """send a single file""" | |
@@ -726,6 +726,9 b' class SSHEngineSetLauncher(LocalEngineSetLauncher):' | |||||
726 | help="""dict of engines to launch. This is a dict by hostname of ints, |
|
726 | help="""dict of engines to launch. This is a dict by hostname of ints, | |
727 | corresponding to the number of engines to start on that host.""") |
|
727 | corresponding to the number of engines to start on that host.""") | |
728 |
|
728 | |||
|
729 | def _engine_cmd_default(self): | |||
|
730 | return ['ipengine'] | |||
|
731 | ||||
729 | @property |
|
732 | @property | |
730 | def engine_count(self): |
|
733 | def engine_count(self): | |
731 | """determine engine count from `engines` dict""" |
|
734 | """determine engine count from `engines` dict""" |
General Comments 0
You need to be logged in to leave comments.
Login now