Show More
@@ -442,7 +442,7 b' def find_controller_cmd():' | |||||
442 | class LocalControllerLauncher(LocalProcessLauncher): |
|
442 | class LocalControllerLauncher(LocalProcessLauncher): | |
443 | """Launch a controller as a regular external process.""" |
|
443 | """Launch a controller as a regular external process.""" | |
444 |
|
444 | |||
445 | controller_cmd = List(find_controller_cmd()) |
|
445 | controller_cmd = List(find_controller_cmd(), config=True) | |
446 | # Command line arguments to ipcontroller. |
|
446 | # Command line arguments to ipcontroller. | |
447 | controller_args = List(['--log-to-file','--log-level', '40'], config=True) |
|
447 | controller_args = List(['--log-to-file','--log-level', '40'], config=True) | |
448 |
|
448 | |||
@@ -466,7 +466,7 b' class WindowsHPCControllerLauncher(WindowsHPCLauncher):' | |||||
466 | class MPIExecControllerLauncher(MPIExecLauncher): |
|
466 | class MPIExecControllerLauncher(MPIExecLauncher): | |
467 | """Launch a controller using mpiexec.""" |
|
467 | """Launch a controller using mpiexec.""" | |
468 |
|
468 | |||
469 |
controller_cmd = List(find_controller_cmd(), config= |
|
469 | controller_cmd = List(find_controller_cmd(), config=True) | |
470 | # Command line arguments to ipcontroller. |
|
470 | # Command line arguments to ipcontroller. | |
471 | controller_args = List(['--log-to-file','--log-level', '40'], config=True) |
|
471 | controller_args = List(['--log-to-file','--log-level', '40'], config=True) | |
472 | n = Int(1, config=False) |
|
472 | n = Int(1, config=False) | |
@@ -533,7 +533,7 b' def find_engine_cmd():' | |||||
533 | class LocalEngineLauncher(LocalProcessLauncher): |
|
533 | class LocalEngineLauncher(LocalProcessLauncher): | |
534 | """Launch a single engine as a regular externall process.""" |
|
534 | """Launch a single engine as a regular externall process.""" | |
535 |
|
535 | |||
536 | engine_cmd = List(find_engine_cmd()) |
|
536 | engine_cmd = List(find_engine_cmd(), config=True) | |
537 | # Command line arguments for ipengine. |
|
537 | # Command line arguments for ipengine. | |
538 | engine_args = List( |
|
538 | engine_args = List( | |
539 | ['--log-to-file','--log-level', '40'], config=True |
|
539 | ['--log-to-file','--log-level', '40'], config=True | |
@@ -614,7 +614,7 b' class LocalEngineSetLauncher(BaseLauncher):' | |||||
614 |
|
614 | |||
615 | class MPIExecEngineSetLauncher(MPIExecLauncher): |
|
615 | class MPIExecEngineSetLauncher(MPIExecLauncher): | |
616 |
|
616 | |||
617 |
engine_cmd = List(find_engine_cmd(), config= |
|
617 | engine_cmd = List(find_engine_cmd(), config=True) | |
618 | # Command line arguments for ipengine. |
|
618 | # Command line arguments for ipengine. | |
619 | engine_args = List( |
|
619 | engine_args = List( | |
620 | ['--log-to-file','--log-level', '40'], config=True |
|
620 | ['--log-to-file','--log-level', '40'], config=True | |
@@ -683,7 +683,7 b' def find_ipcluster_cmd():' | |||||
683 | class IPClusterLauncher(LocalProcessLauncher): |
|
683 | class IPClusterLauncher(LocalProcessLauncher): | |
684 | """Launch the ipcluster program in an external process.""" |
|
684 | """Launch the ipcluster program in an external process.""" | |
685 |
|
685 | |||
686 | ipcluster_cmd = List(find_ipcluster_cmd()) |
|
686 | ipcluster_cmd = List(find_ipcluster_cmd(), config=True) | |
687 | # Command line arguments to pass to ipcluster. |
|
687 | # Command line arguments to pass to ipcluster. | |
688 | ipcluster_args = List( |
|
688 | ipcluster_args = List( | |
689 | ['--clean-logs', '--log-to-file', '--log-level', '40'], config=True) |
|
689 | ['--clean-logs', '--log-to-file', '--log-level', '40'], config=True) |
General Comments 0
You need to be logged in to leave comments.
Login now