From 4f820a1f1ee04ce5f71fa0baab0b76e38eacac46 2012-08-09 07:27:49 From: MinRK Date: 2012-08-09 07:27:49 Subject: [PATCH] default to just `ipengine` for SSHEngineSetLauncher SSHEngineLauncher and SSHControllerLauncher already had this value set, but it was missed in SSHEngineSetLauncher, which usually overrides SSHEngineLauncher. --- diff --git a/IPython/parallel/apps/launcher.py b/IPython/parallel/apps/launcher.py index c828294..453f6e9 100644 --- a/IPython/parallel/apps/launcher.py +++ b/IPython/parallel/apps/launcher.py @@ -726,6 +726,9 @@ class SSHEngineSetLauncher(LocalEngineSetLauncher): help="""dict of engines to launch. This is a dict by hostname of ints, corresponding to the number of engines to start on that host.""") + def _engine_cmd_default(self): + return ['ipengine'] + @property def engine_count(self): """determine engine count from `engines` dict"""